Sign in
webkit
/
WebKit
/
69084d7b0eae184a8076d683d5feee69bc80ce44
/
.
/
JSTests
/
stress
/
splice-should-zero-property-storage-when-rebalancing.js
blob: e92dd79e81d3d1b68a415739cc8acee1fc1eda86 [
file
] [
log
] [
blame
]
var
arr
=
[
4
,
5
,
6
];
arr
.
push
(
10
);
arr
.
pop
();
Object
.
defineProperty
(
arr
,
"foo"
,
{
});
arr
.
shift
();
arr
.
splice
(
0
,
0
,
101
,
102
);
Object
.
defineProperty
(
arr
,
"bar"
,
{
});