eval-first-arg.js (478B)
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 the eval function is called with some argument, then use a first 7 argument 8 es5id: 15.1.2.1_A1.2_T1 9 description: eval("x = 1", "x = 2"), x equal 1, not 2 10 ---*/ 11 12 //CHECK#1 13 var x; 14 eval("x = 1", "x = 2"); 15 if (x !== 1) { 16 throw new Test262Error('#1: eval("x = 1", "x = 2"); x === 1. Actual: ' + (x)); 17 } 18 19 reportCompare(0, 0);