Sign in
webkit
/
WebKit
/
9dc94f5f244ed53ae4d7d1d2be7e706cb93b1ba7
/
.
/
JSTests
/
stress
/
compiler-thread-should-not-ref-identifiers.js
blob: 6ce2b44a8777646f0f9c213704d560bb82a67e99 [
file
] [
log
] [
blame
]
//@ slow!
//@ runDefault
for
(
let j
=
0
;
j
<
500
;
j
++)
{
runString
(`
let a
=
Symbol
(
'a'
);
let o
=
{
[
a
]:
1
};
for
(
let i
=
0
;
i
<
10000
;
++
i
)
{
Object
.
getOwnPropertySymbols
(
o
);
o
[
a
];
}
`);
}