swc/crates/swc_ecma_parser/tests/errors/arguments/input.js.swc-stderr
2022-11-29 09:47:56 +00:00

17 lines
399 B
Plaintext

x 'arguments' is only allowed in functions and class methods
,-[$DIR/tests/errors/arguments/input.js:3:1]
3 | class B {
4 | [arguments]
: ^^^^^^^^^
5 | }
`----
x 'arguments' is only allowed in functions and class methods
,-[$DIR/tests/errors/arguments/input.js:7:1]
7 |
8 | foo = arguments
: ^^^^^^^^^
9 | }
`----