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