mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
e6191447fe
swc_ecma_parser: - Add support for optional tuple element (#978)
13 lines
319 B
Plaintext
13 lines
319 B
Plaintext
error: Expected {, got <eof>
|
|
--> $DIR/tests/test262-parser/fail/2d1410e37ecc3647.js:1:23
|
|
|
|
|
1 | function f(a, ...b = 0)
|
|
| ^
|
|
|
|
error: A rest parameter cannot have an initializer
|
|
--> $DIR/tests/test262-parser/fail/2d1410e37ecc3647.js:1:18
|
|
|
|
|
1 | function f(a, ...b = 0)
|
|
| ^
|
|
|