Sign in
webkit
/
WebKit
/
9f8388ebdf099a98ce75d93c131e5941dc4da269
/
.
/
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
);