| // Copyright 2009 the Sputnik authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| When the Object function is called with one argument value, |
| and the value neither is null nor undefined, and is supplied, return ToObject(value) |
| description: Calling Object function with boolean expression as argument value |
| var obj = Object((1===1)&&(!false)); |
| if (obj.constructor !== Boolean) { |
| $ERROR('#1: Object(expression) returns ToObject(expression)'); |
| if (typeof obj !== "object") { |
| $ERROR('#1.1: Object(expression) returns ToObject(expression)'); |
| $ERROR('#2: Object(expression) returns ToObject(expression)'); |
| $ERROR('#3: Object(expression) returns ToObject(expression)'); |