Sign in
webkit
/
WebKit
/
075931ac30dcae1739e575539dfc139918725298
/
.
/
JSTests
/
stress
/
unshift-and-concurrent-access.js
blob: f0a7fc0e99a500959dd8eef59b7b32373a20f3bb [
file
] [
log
] [
blame
]
//@ runDefault("--jitPolicyScale=0", "--watchdog-exception-ok", "--watchdog=100")
let a0
=
[];
for
(
let j
=
0
;
j
<
1000
;
j
++)
{
for
(
let i
=
0
;
i
<
10000
;
i
++)
{
a0
.
unshift
(
0
);
}
Array
.
prototype
.
__defineGetter__
(
'a'
,
()
=>
{});
a0
.
x
++;
}