test262/implementation-contributed/javascriptcore/stress/inferred-infinite-loop-that...

28 lines
418 B
JavaScript

function bar(f) {
throw f;
}
noInline(bar);
var shouldContinue = true;
function foo(a) {
var x = a + 1;
while (shouldContinue) {
bar(function() { return x; });
}
}
noInline(foo);
for (var i = 0; i < 10000; ++i) {
try {
foo(i);
} catch (f) {
var result = f();
if (result != i + 1)
throw "Error: bad result for i = " + i + ": " + result;
}
}