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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
|
// The parser should throw SyntaxError immediately if it finds "..." in a
// context where it's not allowed.
function testThrow(code, column) {
var caught = false;
try {
eval(code);
} catch (e) {
caught = true;
assertEq(e.columnNumber, column);
}
assertEq(caught, true,
"failed to throw evaluating <" + code + ">");
}
// expression statement
testThrow(`
...a)=>
`, 0);
// default parameter
testThrow(`
function f(x=...a) =>
`, 13);
// rest parameter
testThrow(`
function f(... ...a) =>
`, 15);
// destructuring parameter
testThrow(`
([... ...a)=>
`, 6);
testThrow(`
({...a)=>
`, 2);
testThrow(`
function f([... ...a)=>
`, 16);
testThrow(`
function f({...a)=>
`, 12);
// arrow
testThrow(`
x => ...a)=>
`, 5);
// template literal
testThrow("`${ ...a)=>}`", 4);
// destructing assignment
testThrow(`
var [... ...a)=>
`, 9);
testThrow(`
var {...a)=>
`, 5);
// initializer
testThrow(`
var [a] = ...a)=>
`, 10);
testThrow(`
var {a:a} = ...a)=>
`, 12);
testThrow(`
var a = ...a)=>
`, 8);
// if statement
testThrow(`
if (...a) =>
`, 4);
// for statement
testThrow(`
for (...a)=>
`, 5);
testThrow(`
for (let a in ...a)=>
`, 14);
testThrow(`
for (let a of ...a)=>
`, 14);
testThrow(`
for (; ...a)=>
`, 7);
testThrow(`
for (;; ...a)=>
`, 8);
// case
testThrow(`
switch (x) { case ...a)=>
`, 18);
// return statement
testThrow(`
function f(x) { return ...a)=>
`, 23);
// yield expression
testThrow(`
function* f(x) { yield ...a)=>
`, 23);
// throw statement
testThrow(`
throw ...a) =>
`, 6);
testThrow(`
try {} catch (x if ...a) =>
`, 19);
// class
testThrow(`
class A extends ...a) =>
`, 16);
// conditional expression
testThrow(`
1 ? ...a) =>
`, 4);
testThrow(`
1 ? 2 : ...a) =>
`, 8);
// unary operators
testThrow(`
void ...a) =>
`, 5);
testThrow(`
typeof ...a) =>
`, 7);
testThrow(`
++ ...a) =>
`, 3);
testThrow(`
delete ...a) =>
`, 7);
// array comprehension
testThrow(`
[for (...a) =>
`, 6);
testThrow(`
[for (x of y) if (...a) =>
`, 18);
testThrow(`
[for (x of y) if (x) ...a) =>
`, 21);
// new
testThrow(`
new ...a) =>
`, 4);
// member expression
testThrow(`
x[...a) =>
`, 2);
// array literal
testThrow(`
[... ...a) =>
`, 5);
// object literal
testThrow(`
({[...a) =>
`, 3);
testThrow(`
({x: ...a) =>
`, 5);
// assignment
testThrow(`
x = ...a) =>
`, 4);
|