Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/main
/
.
/
JSTests
/
stress
/
lazy-global-object-property-materialization-should-not-putDirectWithoutTransition.js
blob: fc72a5e2add62cd06bbcee7d3621c2dca2409bcb [
file
] [
edit
]
//@ runDefault("--useConcurrentJIT=0")
const
x
=
{};
for
(
let i
=
0
;
i
<
100
;
i
++)
{
const
o
=
createGlobalObject
();
x
.
__proto__
=
o
;
for
(
let j
=
0
;
j
<
testLoopCount
;
j
++)
{
o
.
y
=
0
;
}
with
(
x
)
{
new
Uint8Array
();
}
}