mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 02:06:08 +03:00
d074063867
Implement some error recovery logic to parser
13 lines
497 B
Plaintext
13 lines
497 B
Plaintext
error: 'implements', 'interface', 'let', 'package', 'private', 'protected', 'public', 'static', or 'yield' cannot be used as an identifier in strict mode
|
|
--> $DIR/tests/test262-parser/fail/37cb7557997d4fd6.js:1:29
|
|
|
|
|
1 | "use strict"; for (let [a = let];;) {}
|
|
| ^^^
|
|
|
|
error: Destructuring bindings require initializers
|
|
--> $DIR/tests/test262-parser/fail/37cb7557997d4fd6.js:1:24
|
|
|
|
|
1 | "use strict"; for (let [a = let];;) {}
|
|
| ^^^^^^^^^
|
|
|