11.2.3-3_5.js (589B)
1 // Copyright (c) 2012 Ecma International. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 es5id: 11.2.3-3_5 6 description: > 7 Call arguments are evaluated before the check is made to see if 8 the object is actually callable (eval'ed) 9 ---*/ 10 11 var fooCalled = false; 12 function foo(){ fooCalled = true; } 13 14 var o = { }; 15 assert.throws(TypeError, function() { 16 eval("o.bar( foo() );"); 17 throw new Test262Error("o.bar does not exist!"); 18 }); 19 assert.sameValue(fooCalled, true, 'fooCalled'); 20 21 reportCompare(0, 0);