Sign in
webkit
/
WebKit
/
d5bc8626ff9394ad3cac4aff99be89e91a8d2265
/
.
/
JSTests
/
stress
/
structure-flattenDictionary-should-clear-unused-property-slots.js
blob: 5e726389e2dbff6c7593693e13253b6f60594c7d [
file
] [
log
] [
blame
]
// This test should not crash.
var
arr
=
[];
arr
.
x
=
0
;
arr
.
y
=
0
;
delete
arr
[
"x"
];
for
(
var
i
=
0
;
i
<
2
;
++
i
)
arr
.
unshift
(
i
);
arr
.
z
=
42
;