]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/stress/goofy-function-reentry-incorrect-inference.js
12 var array
= foo(false);
16 for (var i
= 0; i
< 10000; ++i
) {
17 var result
= array
[0]();
19 throw "Error: bad result in loop: " + result
;
23 var result
= array
[0]();
25 throw "Error: bad result at end: " + result
;