testGetCallObj.js (227B)
1 function testGetCallObjInlined(i) { 2 if (i > 7) eval("1"); 3 return 1; 4 } 5 6 function testGetCallObj() { 7 for (var i = 0; i < 10; ++i) 8 testGetCallObjInlined(i); 9 return "ok"; 10 } 11 assertEq(testGetCallObj(), "ok");