1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// Case 1: splice() removes an element from the array.
{
let array = [];
array.push(0, 1, 2);
array.constructor = {
[Symbol.species]: function(n) {
// Increase the initialized length of the array.
array.push(3, 4, 5);
// Make the length property non-writable.
Object.defineProperty(array, "length", {writable: false});
return new Array(n);
}
}
assertThrowsInstanceOf(() => Array.prototype.splice.call(array, 0, 1), TypeError);
assertEq(array.length, 6);
assertEqArray(array, [1, 2, /* hole */, 3, 4, 5]);
}
// Case 2: splice() adds an element to the array.
{
let array = [];
array.push(0, 1, 2);
array.constructor = {
[Symbol.species]: function(n) {
// Increase the initialized length of the array.
array.push(3, 4, 5);
// Make the length property non-writable.
Object.defineProperty(array, "length", {writable: false});
return new Array(n);
}
}
assertThrowsInstanceOf(() => Array.prototype.splice.call(array, 0, 0, 123), TypeError);
assertEq(array.length, 6);
assertEqArray(array, [123, 0, 1, 2, 4, 5]);
}
if (typeof reportCompare === "function")
reportCompare(true, true);
|