Sign in
webkit
/
WebKit
/
4998104f692eb1d9136695fb6ec92704feed5358
/
.
/
JSTests
/
stress
/
lazy-global-object-property-materialization-should-not-putDirectWithoutTransition.js
blob: a6c354a6725844c547bacb0959ec653966416d84 [
file
] [
log
] [
blame
]
//@ runDefault("--useConcurrentJIT=0")
const
x
=
{};
for
(
let i
=
0
;
i
<
100
;
i
++)
{
const
o
=
createGlobalObject
();
x
.
__proto__
=
o
;
for
(
let j
=
0
;
j
<
10000
;
j
++)
{
o
.
y
=
0
;
}
with
(
x
)
{
new
Uint8Array
();
}
}