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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
load(libdir + "array-compare.js");
const xs = [
// Zero arguments.
[],
// Single argument.
[1],
// Few arguments. Even number of arguments.
[1, 2],
// Few arguments. Odd number of arguments.
[1, 2, 3],
// Many arguments. Even number of arguments.
[1, 2, 3, 4, 5, 6, 7, 8, 9, 0],
// Many arguments. Odd number of arguments.
[1, 2, 3, 4, 5, 6, 7, 8, 9],
];
class ArrayWithExplicitConstructor extends Array {
constructor(...args) {
super(...args);
}
}
class ArrayWithImplicitConstructor extends Array {
constructor(...args) {
super(...args);
}
}
function f(...x) {
return new ArrayWithExplicitConstructor(...x);
}
function g(...x) {
return new ArrayWithImplicitConstructor(...x);
}
// Don't inline |f| and |g| into the top-level script.
with ({}) ;
for (let i = 0; i < 400; ++i) {
let x = xs[i % xs.length];
// NB: Array(1) creates the array `[,]`.
let expected = x.length !== 1 ? x : [,];
let result = f.apply(null, x);
assertEq(arraysEqual(result, expected), true);
assertEq(Object.getPrototypeOf(result), ArrayWithExplicitConstructor.prototype);
}
for (let i = 0; i < 400; ++i) {
let x = xs[i % xs.length];
// NB: Array(1) creates the array `[,]`.
let expected = x.length !== 1 ? x : [,];
let result = g.apply(null, x);
assertEq(arraysEqual(result, expected), true);
assertEq(Object.getPrototypeOf(result), ArrayWithImplicitConstructor.prototype);
}
|