Sign in
webkit
/
WebKit
/
53593e9541a2df2f62253c48cfc36324561ef5c4
/
.
/
JSTests
/
stress
/
get-by-id-strict-callee.js
blob: 929d65e782840993a6838129022d1fa27c7a1c7c [
file
] [
log
] [
blame
]
let warm
=
1000
;
function
bar
()
{
for
(
let i
=
0
;
i
<
warm
;
++
i
)
arguments
.
callee
;
}
function
baz
()
{
"use strict"
;
arguments
.
callee
;
}
bar
();
let caught
=
false
;
try
{
baz
();
}
catch
(
e
)
{
caught
=
true
;
}
if
(!
caught
)
throw
new
Error
(`
bad
!`);