]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/stress/tricky-inferred-infinite-loop-that-uses-captured-variables-and-creates-the-activation-outside-the-loop.js
12 var shouldContinue
= true;
16 var f
= (function() { return x
; });
17 while (shouldContinue
) {
24 for (var i
= 0; i
< 10000; ++i
) {
30 throw "Error: bad result for i = " + i
+ ": " + result
;