Lines Matching refs:shouldBeUndefined
41 shouldBeUndefined("if(0){ L:for(;;) continue L; }")
42 shouldBeUndefined("if(0){ L:A:for(;;) continue L; }")
43 shouldBeUndefined("if(0){ A:L:for(;;) continue L; }")
45 shouldBeUndefined("if(0){ L:for(;;) A:continue L; }")
47 shouldBeUndefined("if(0){ L:do continue L; while(0); }")
48 shouldBeUndefined("if(0){ L:A:do continue L; while(0); }")
49 shouldBeUndefined("if(0){ A:L:do continue L; while(0);}")
51 shouldBeUndefined("if(0){ L:do A:continue L; while(0); }")
54 shouldBeUndefined("if(0){ L:while(0) continue L; }")
55 shouldBeUndefined("if(0){ L:A:while(0) continue L; }")
56 shouldBeUndefined("if(0){ A:L:while(0) continue L; }")
58 shouldBeUndefined("if(0){ L:while(0) A:continue L; }")