S11.8.7_A2.1_T3.js (618B)
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: Operator "in" uses GetValue 6 es5id: 11.8.7_A2.1_T3 7 description: If GetBase(ShiftExpression) is null, throw ReferenceError 8 ---*/ 9 10 //CHECK#1 11 try { 12 "MAX_VALUE" in NUMBER; 13 throw new Test262Error('#1.1: "MAX_VALUE" in NUMBER throw ReferenceError. Actual: ' + ("MAX_VALUE" in NUMBER)); 14 } 15 catch (e) { 16 if ((e instanceof ReferenceError) !== true) { 17 throw new Test262Error('#1.2: "MAX_VALUE" in NUMBER throw ReferenceError. Actual: ' + (e)); 18 } 19 } 20 21 reportCompare(0, 0);