Lines Matching refs:SyntaxError
30 PASS if (0) { L:{ break; } } threw exception SyntaxError: Illegal break statement.
31 PASS if (0) { L:{ continue L; } } threw exception SyntaxError: Undefined label 'L'.
32 PASS if (0) { L:{ continue; } } threw exception SyntaxError: Illegal continue statement.
33 PASS if (0) { switch (1) { case 1: continue; } } threw exception SyntaxError: Illegal continue stat…
35 PASS if (0) { A:L:{ break; } } threw exception SyntaxError: Illegal break statement.
36 PASS if (0) { A:L:{ continue L; } } threw exception SyntaxError: Undefined label 'L'.
37 PASS if (0) { A:L:{ continue; } } threw exception SyntaxError: Illegal continue statement.
39 PASS if (0) { L:A:{ break; } } threw exception SyntaxError: Illegal break statement.
40 PASS if (0) { L:A:{ continue L; } } threw exception SyntaxError: Undefined label 'L'.
41 PASS if (0) { L:A:{ continue; } } threw exception SyntaxError: Illegal continue statement.
45 PASS if(0){ A:for(;;) L:continue L; } threw exception SyntaxError: Undefined label 'L'.
50 PASS if(0){ A:do L:continue L; while(0); } threw exception SyntaxError: Undefined label 'L'.
55 PASS if(0){ A:while(0) L:continue L; } threw exception SyntaxError: Undefined label 'L'.