Sign in
webkit
/
WebKit
/
14cb98a360e661c1b39a648e8ccc3be2e2757789
/
.
/
JSTests
/
stress
/
arguments-callee-uninitialized.js
blob: 68650423edc55e28cd9e6215afd552b3bb013196 [
file
] [
log
] [
blame
]
function
foo
(
e
)
{
if
(
e
)
{
arguments
[
0
]--;
return
arguments
.
callee
.
apply
(
this
,
arguments
);
}
}
noInline
(
foo
);
for
(
var
i
=
0
;
i
<
10000
;
i
++)
foo
(
1
);