(type)
| 907 | }; |
| 908 | |
| 909 | function break_cont(type) { |
| 910 | var name; |
| 911 | if (!can_insert_semicolon()) { |
| 912 | name = is("name") ? S.token.value : null; |
| 913 | } |
| 914 | if (name != null) { |
| 915 | next(); |
| 916 | if (!member(name, S.labels)) |
| 917 | croak("Label " + name + " without matching loop or statement"); |
| 918 | } |
| 919 | else if (S.in_loop == 0) |
| 920 | croak(type + " not inside a loop or switch"); |
| 921 | semicolon(); |
| 922 | return as(type, name); |
| 923 | }; |
| 924 | |
| 925 | function for_() { |
| 926 | expect("("); |