Sign in
webkit
/
WebKit
/
9f8388ebdf099a98ce75d93c131e5941dc4da269
/
.
/
JSTests
/
stress
/
array-unshift-should-not-race-against-compiler-thread.js
blob: a0d82e1ad8d8bd8886952f1a6b848264e06e34b1 [
file
] [
log
] [
blame
]
let x
=
[];
for
(
let i
=
0
;
i
<
30
;
++
i
)
{
for
(
let j
=
0
;
j
<
20000
;
++
j
)
{
x
[
0
]
x
.
unshift
(
undefined
);
}
}