Sign in
webkit
/
WebKit
/
3ee83bd7079b5d32a56631e7e3c8cee2e6830703
/
.
/
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"
,
{
});