Sign in
webkit
/
WebKit
/
9f8388ebdf099a98ce75d93c131e5941dc4da269
/
.
/
JSTests
/
stress
/
put-getter-setter-by-id-transition.js
blob: 7683ccd8ef3faf214be784e3b933facaac61546c [
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
=
{
[
theglobal
]:
0
,
set
hello
(
ignored
)
{}
};
foo
(
obj
,
'hello'
);
}