Sign in
webkit
/
WebKit
/
14cb98a360e661c1b39a648e8ccc3be2e2757789
/
.
/
JSTests
/
stress
/
proxy-proto-enumerator.js
blob: d26aad0fb656c03a10d36596c87fdcb59e1f2d07 [
file
] [
log
] [
blame
]
//@ requireOptions("--forceEagerCompilation=true", "--useConcurrentJIT=false")
function
main
()
{
const
foo
=
{
x
:
0
};
foo
.
__proto__
=
new
Proxy
({},
{
ownKeys
()
{
return
[];
}
});
for
(
const
x in foo
)
{
}
}
for
(
let i
=
0
;
i
<
0x1000
;
i
++)
main
();