Lines Matching refs:SyntaxError
18 PASS x = class threw exception SyntaxError: Unexpected end of input.
19 PASS x = class { threw exception SyntaxError: Unexpected end of input.
20 PASS x = class { ( } threw exception SyntaxError: Unexpected token (.
22 PASS x = class { constructor() {} constructor() {} } threw exception SyntaxError: A class may only …
23 PASS x = class { get constructor() {} } threw exception SyntaxError: Class constructor may not be a…
24 PASS x = class { set constructor() {} } threw exception SyntaxError: Class constructor may not be a…
27 PASS x = class { constructor() {} static prototype() {} } threw exception SyntaxError: Classes may …
28 PASS x = class { constructor() {} static get prototype() {} } threw exception SyntaxError: Classes …
29 PASS x = class { constructor() {} static set prototype() {} } threw exception SyntaxError: Classes …
34 PASS x = class { constructor() {} set foo() {} } threw exception SyntaxError: Setter must have exac…
35 PASS x = class { constructor() {} set foo(a, b) {} } threw exception SyntaxError: Setter must have …
37 PASS x = class { constructor() {} get foo(x) {} } threw exception SyntaxError: Getter must not have…
38 PASS x = class { constructor() {} get foo({x, y}) {} } threw exception SyntaxError: Getter must not…