summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/arguments/defaults-destructuring-with-rest.js
blob: 26c35f6a434cc02214e5ddecb9f19be3f75a59fd (plain)
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
load(libdir + "asserts.js");
load(libdir + "eqArrayHelper.js");

function f1(a, bIs, [b]=[3], ...rest) {
    assertEq(a, 1);
    assertEq(bIs, b);
    assertEqArray(rest, []);
}
assertEq(f1.length, 2);
f1(1, 3);
f1(1, 42, [42]);

function f2([a]=[rest], ...rest) {
    assertEq(a, undefined);
}
// TDZ
assertThrowsInstanceOf(f2, ReferenceError);

function f3([a]=[rest], ...rest) {
    assertEq(a, 1);
    assertEqArray(rest, [2, 3, 4]);
}
// TDZ
assertThrowsInstanceOf(f3, ReferenceError);

function f4([a]=rest, ...rest) {
}
// TDZ
assertThrowsInstanceOf(f4, ReferenceError);