|
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 "void" uses GetValue |
|
6 * |
|
7 * @path ch11/11.4/11.4.2/S11.4.2_A2_T1.js |
|
8 * @description Either Type(x) is not Reference or GetBase(x) is not null |
|
9 */ |
|
10 |
|
11 //CHECK#1 |
|
12 if (void 0 !== undefined) { |
|
13 $ERROR('#1: void 0 === undefined. Actual: ' + (void 0)); |
|
14 } |
|
15 |
|
16 //CHECK#2 |
|
17 var x = 0; |
|
18 if (void x !== undefined) { |
|
19 $ERROR('#2: var x = 0; void x === undefined. Actual: ' + (void x)); |
|
20 } |
|
21 |
|
22 //CHECK#3 |
|
23 var x = new Object(); |
|
24 if (void x !== undefined) { |
|
25 $ERROR('#3: var x = new Object(); void x === undefined. Actual: ' + (void x)); |
|
26 } |
|
27 |