Sign in
webkit
/
WebKit
/
69084d7b0eae184a8076d683d5feee69bc80ce44
/
.
/
JSTests
/
stress
/
put-by-id-direct-transition.js
blob: 611f8ed2663888490bcd3b34435c63808b27da87 [
file
] [
log
] [
blame
]
let theglobal
=
0
;
for
(
theglobal
=
0
;
theglobal
<
100000
;
++
theglobal
)
;
const
foo
=
(
ignored
,
arg1
)
=>
{
theglobal
=
arg1
;
};
for
(
let j
=
0
;
j
<
10000
;
++
j
)
{
const
obj
=
{
set
hello
(
ignored
)
{},
[
theglobal
]:
0
};
foo
(
obj
,
'hello'
);
}