Sign in
webkit
/
WebKit
/
14cb98a360e661c1b39a648e8ccc3be2e2757789
/
.
/
JSTests
/
stress
/
symbol-is-destructed-before-refing-underlying-symbol-impl.js
blob: 947a302408589b4f2f97c4378b29259e1438a82d [
file
] [
log
] [
blame
]
//@ skip if $buildType == "debug"
//@ slow!
//@ runDefault("--collectContinuously=1", "--slowPathAllocsBetweenGCs=100")
function
foo
(
a
)
{
a
[
Symbol
()]
=
1
;
}
noInline
(
foo
);
for
(
let i
=
0
;
i
<
1e7
;
i
++)
{
let a
=
{};
foo
(
a
);
}