S15.5.1.1_A2_T1.js (913B)
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: If value is not supplied, the empty string "" is returned 6 es5id: 15.5.1.1_A2_T1 7 description: Call String() 8 ---*/ 9 10 var __str = String(); 11 12 ////////////////////////////////////////////////////////////////////////////// 13 //CHECK#1 14 if (typeof __str !== "string") { 15 throw new Test262Error('#1: __str = String(); typeof __str === "string". Actual: typeof __str ===' + typeof __str); 16 } 17 // 18 ////////////////////////////////////////////////////////////////////////////// 19 20 ////////////////////////////////////////////////////////////////////////////// 21 //CHECK#2 22 if (__str !== "") { 23 throw new Test262Error('#2: __str = String(); __str === "". Actual: __str ===' + __str); 24 } 25 // 26 ////////////////////////////////////////////////////////////////////////////// 27 28 reportCompare(0, 0);