Lines Matching refs:shouldThrow
27 shouldThrow("if (0) { L:{ break; } }");
28 shouldThrow("if (0) { L:{ continue L; } }");
29 shouldThrow("if (0) { L:{ continue; } }");
30 shouldThrow("if (0) { switch (1) { case 1: continue; } }");
32 shouldThrow("if (0) { A:L:{ break; } }");
33 shouldThrow("if (0) { A:L:{ continue L; } }");
34 shouldThrow("if (0) { A:L:{ continue; } }");
37 shouldThrow("if (0) { L:A:{ break; } }");
38 shouldThrow("if (0) { L:A:{ continue L; } }");
39 shouldThrow("if (0) { L:A:{ continue; } }");
44 shouldThrow("if(0){ A:for(;;) L:continue L; }")
50 shouldThrow("if(0){ A:do L:continue L; while(0); }")
57 shouldThrow("if(0){ A:while(0) L:continue L; }")