bug1057580.js (333B)
1 // |jit-test| error: TypeError 2 3 function testApplyCallHelper(f) { 4 for (var i = 0; i < 10; ++i) 5 f.call(this); 6 } 7 function testApplyCall() { 8 var r = testApplyCallHelper( 9 function (a0,a1,a2,a3,a4,a5,a6,a7) { 10 x = [a0,a1,a2,a3,a4,a5,a6,a7]; 11 } 12 ); 13 r += testApplyCallHelper(x); 14 } 15 testApplyCall();