S11.2.3_A3_T3.js (813B)
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 MemberExpression is not Object, throw TypeError 6 es5id: 11.2.3_A3_T3 7 description: Checking "string primitive" case 8 ---*/ 9 10 //CHECK#1 11 try { 12 "1"(); 13 throw new Test262Error('#1.1: "1"() throw TypeError. Actual: ' + ("1"())); 14 } 15 catch (e) { 16 if ((e instanceof TypeError) !== true) { 17 throw new Test262Error('#1.2: "1"() throw TypeError. Actual: ' + (e)); 18 } 19 } 20 21 //CHECK#2 22 try { 23 var x = "1"; 24 x(); 25 throw new Test262Error('#2.1: var x = "1"; x() throw TypeError. Actual: ' + (x())); 26 } 27 catch (e) { 28 if ((e instanceof TypeError) !== true) { 29 throw new Test262Error('#2.2: var x = "1"; x() throw TypeError. Actual: ' + (e)); 30 } 31 } 32 33 reportCompare(0, 0);