| // Copyright 2009 the Sputnik authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| info: First expression is evaluated first, and then second expression |
| description: Checking with undeclarated variables |
| object instanceof (object = {}, Object); |
| $ERROR('#1.1: object instanceof (object = {}, Object) throw ReferenceError. Actual: ' + (object instanceof (object = {}, Object))); |
| if ((e instanceof ReferenceError) !== true) { |
| $ERROR('#1.2: object instanceof (object = {}, Object) throw ReferenceError. Actual: ' + (e)); |