summaryrefslogtreecommitdiffstats
path: root/js/src/tests/ecma_6/Destructuring/cover-init-name-syntax.js
blob: b37d8c2904866178db376f0ee5ce3291589dda38 (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
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
67
68
69
70
71
72
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */


// CoverInitName in arrow parameters.
({a = 1}, {b = 2}, {c = 3}) => {};
({a = 1} = {}, {b = 2}, {c = 3}) => {};
({a = 1} = {}, {b = 2} = {}, {c = 3}) => {};
({a = 1} = {}, {b = 2} = {}, {c = 3} = {}) => {};


// CoverInitName in CoverParenthesizedExpressionAndArrowParameterList,
// but not ArrowParameters.
assertThrowsInstanceOf(() => eval(`
    ({a = 1}, {b = 2}, {c = 3});
`), SyntaxError);
assertThrowsInstanceOf(() => eval(`
    ({a = 1}, {b = 2}, {c = 3} = {});
`), SyntaxError);
assertThrowsInstanceOf(() => eval(`
    ({a = 1}, {b = 2} = {}, {c = 3} = {});
`), SyntaxError);


// CoverInitName nested in array destructuring.
[{a = 0}] = [{}];
var [{a = 0}] = [{}];
{ let [{a = 0}] = [{}]; }
{ const [{a = 0}] = [{}]; }

for ([{a = 0}] of []);
for (var [{a = 0}] of []);
for (let [{a = 0}] of []);
for (const [{a = 0}] of []);

function f([{a = 0}]) {}
var h = ([{a = 0}]) => {};


// CoverInitName nested in rest pattern.
[...[{a = 0}]] = [{}];
var [...[{a = 0}]] = [{}];
{ let [...[{a = 0}]] = [{}]; }
{ const [...[{a = 0}]] = [{}]; }

for ([...[{a = 0}]] of []);
for (var [...[{a = 0}]] of []);
for (let [...[{a = 0}]] of []);
for (const [...[{a = 0}]] of []);

function f([...[{a = 0}]]) {}
var h = ([...[{a = 0}]]) => {};


// CoverInitName nested in object destructuring.
({p: {a = 0}} = {p: {}});
var {p: {a = 0}} = {p: {}};
{ let {p: {a = 0}} = {p: {}}; }
{ const {p: {a = 0}} = {p: {}}; }

for ({p: {a = 0}} of []);
for (var {p: {a = 0}} of []);
for (let {p: {a = 0}} of []);
for (const {p: {a = 0}} of []);

function f({p: {a = 0}}) {}
var h = ({p: {a = 0}}) => {};


if (typeof reportCompare === "function")
    reportCompare(0, 0);