S11.2.3_A4_T4.js (576B)
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: | 6 If MemberExpression does not implement the internal [[Call]] method, 7 throw TypeError 8 es5id: 11.2.3_A4_T4 9 description: Checking Global object case 10 ---*/ 11 12 //CHECK#1 13 try { 14 this(); 15 throw new Test262Error('#1.1: this() throw TypeError. Actual: ' + (this())); 16 } 17 catch (e) { 18 if ((e instanceof TypeError) !== true) { 19 throw new Test262Error('#1.2: this() throw TypeError. Actual: ' + (e)); 20 } 21 } 22 23 reportCompare(0, 0);