S9.8_A1_T2.js (802B)
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 info: Result of ToString conversion from undefined value is "undefined" 6 es5id: 9.8_A1_T2 7 description: > 8 Undefined values is undefined, void 0 and eval("var x"). Use 9 implicit transformation 10 ---*/ 11 12 // CHECK#1 13 if (undefined + "" !== "undefined") { 14 throw new Test262Error('#1: undefined + "" === "undefined". Actual: ' + (undefined + "")); 15 } 16 17 // CHECK#2 18 if (void 0 + "" !== "undefined") { 19 throw new Test262Error('#2: void 0 + "" === "undefined". Actual: ' + (void 0 + "")); 20 } 21 22 // CHECK#3 23 if (eval("var x") + "" !== "undefined") { 24 throw new Test262Error('#3: eval("var x") + "" === "undefined". Actual: ' + (eval("var x") + "")); 25 } 26 27 reportCompare(0, 0);