Sign in
webkit
/
WebKit
/
14cb98a360e661c1b39a648e8ccc3be2e2757789
/
.
/
JSTests
/
stress
/
put-by-val-slow-dfg.js
blob: cf808972939851beb17ce3435e47fd9cf521f06c [
file
] [
log
] [
blame
]
function
foo
(
a0
)
{
a0
[
0
]
=
undefined
;
}
for
(
let i
=
0
;
i
<
100000
;
i
++)
{
foo
(
0
);
foo
([]);
foo
(
''
);
}