|
1 // Copyright 2009 the Sputnik authors. All rights reserved. |
|
2 // This code is governed by the BSD license found in the LICENSE file. |
|
3 |
|
4 /** |
|
5 * Operator "typeof" uses GetValue |
|
6 * |
|
7 * @path ch11/11.4/11.4.3/S11.4.3_A2_T1.js |
|
8 * @description Either Type(x) is not Reference or GetBase(x) is not null |
|
9 */ |
|
10 |
|
11 //CHECK#1 |
|
12 if (typeof 0 !== "number") { |
|
13 $ERROR('#1: typeof 0 === "number". Actual: ' + (typeof 0)); |
|
14 } |
|
15 |
|
16 //CHECK#2 |
|
17 var x = 0; |
|
18 if (typeof x !== "number") { |
|
19 $ERROR('#2: typeof x === "number". Actual: ' + (typeof x)); |
|
20 } |
|
21 |
|
22 //CHECK#3 |
|
23 var x = new Object(); |
|
24 if (typeof x !== "object") { |
|
25 $ERROR('#3: var x = new Object(); typeof x === "object". Actual: ' + (typeof x)); |
|
26 } |
|
27 |