]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/stress/simplify-varargs-mandatory-minimum-smaller-than-limit.js
1 function foo() { return 42; }
3 function bar() { return foo
.apply(this, arguments
); }
5 function baz() { return bar(1, 2, 3); }
9 for (var i
= 0; i
< 10000; ++i
) {
12 throw "Error: bad result: " + result
;