]> git.saurik.com Git - apple/javascriptcore.git/blob - tests/stress/arguments-callee-uninitialized.js
68650423edc55e28cd9e6215afd552b3bb013196
[apple/javascriptcore.git] / tests / stress / arguments-callee-uninitialized.js
1 function foo(e) {
2 if (e) {
3 arguments[0]--;
4 return arguments.callee.apply(this, arguments);
5 }
6 }
7 noInline(foo);
8
9 for (var i = 0; i < 10000; i++)
10 foo(1);
11