blob: 32fa82aa6e9617b11418b84bf436a83675688af5 [file] [log] [blame]
// Copyright 2018 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
{
const x = [, 1];
x.__proto__ = [42];
const y = [...x];
assertEquals([42, 1], y);
assertTrue(y.hasOwnProperty(0));
}
{
const x = [, 1];
x.__proto__ = [42];
assertEquals(42, x[Symbol.iterator]().next().value);
}
{
const array_prototype = [].__proto__;
array_prototype[0] = 42;
const x = [, 1];
assertEquals(42, x[Symbol.iterator]().next().value);
delete array_prototype[0];
}