]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/stress/get-my-argument-by-val-inlined-no-formal-parameters.js
5 return arguments
[index
];
16 for (var i
= 0; i
< 100; ++i
) {
18 var result
= foo(42, 53);
19 if (result
!= [42, 53][index
])
20 throw "Error: bad result in first loop: " + result
;
23 for (var i
= 0; i
< 100000; ++i
) {
27 throw "Error: bad result in second loop: " + result
;
32 if (result
!== void 0)
33 throw "Error: bad result at end: " + result
;