Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/main
/
.
/
JSTests
/
stress
/
hoisted-eval-different-scope.js
blob: 45c419b715096f34ee888af8a125c24240bc76c3 [
file
] [
edit
]
for
(
var
i
=
0
;
i
<
testLoopCount
;
++
i
)
{
eval
(`
var
x
=
1
;
with
({
g
()
{
}
})
{
if
(
true
)
{
function
f
()
{
}
}
f
();
g
(
'here'
)
}
`)
}