|
1 // Copyright 2009 the Sputnik authors. All rights reserved. |
|
2 // This code is governed by the BSD license found in the LICENSE file. |
|
3 |
|
4 /** |
|
5 * When "continue Identifier" is evaluated Identifier must be label in the label set of an enclosing (but not crossing function boundaries) IterationStatement |
|
6 * |
|
7 * @path ch12/12.7/S12.7_A5_T1.js |
|
8 * @description Trying to continue another labeled loop |
|
9 * @negative |
|
10 */ |
|
11 |
|
12 LABEL_OUT : var x=0, y=0; |
|
13 LABEL_DO_LOOP : do { |
|
14 LABEL_IN : x++; |
|
15 if(x===10)break; |
|
16 continue LABEL_ANOTHER_LOOP; |
|
17 LABEL_IN_2 : y++; |
|
18 function IN_DO_FUNC(){} |
|
19 } while(0); |
|
20 |
|
21 LABEL_ANOTHER_LOOP : do { |
|
22 ; |
|
23 } while(0); |
|
24 |
|
25 function OUT_FUNC(){} |
|
26 |