Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
1 // Copyright 2009 the Sputnik authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /**
5 * ToObject conversion from Boolean: create a new Boolean object
6 * whose [[value]] property is set to the value of the boolean
7 *
8 * @path ch09/9.9/S9.9_A3.js
9 * @description Trying to convert from Boolean to Object
10 */
12 // CHECK#1
13 if (Object(true).valueOf() !== true){
14 $ERROR('#1: Object(true).valueOf() === true. Actual: ' + (Object(true).valueOf()));
15 }
17 // CHECK#2
18 if (typeof Object(true) !== "object"){
19 $ERROR('#2: typeof Object(true) === "object". Actual: ' + (typeof Object(true)));
20 }
22 // CHECK#3
23 if (Object(true).constructor.prototype !== Boolean.prototype){
24 $ERROR('#3: Object(true).constructor.prototype === Boolean.prototype. Actual: ' + (Object(true).constructor.prototype));
25 }
27 // CHECK#4
28 if (Object(false).valueOf() !== false){
29 $ERROR('#4: Object(false).valueOf() === false. Actual: ' + (Object(false).valueOf()));
30 }
32 // CHECK#5
33 if (typeof Object(false) !== "object"){
34 $ERROR('#5: typeof Object(false) === "object". Actual: ' + (typeof Object(false)));
35 }
37 // CHECK#6
38 if (Object(false).constructor.prototype !== Boolean.prototype){
39 $ERROR('#6: Object(false).constructor.prototype === Boolean.prototype. Actual: ' + (Object(false).constructor.prototype));
40 }