()
| 893 | }; |
| 894 | |
| 895 | function block_() { |
| 896 | expect("{"); |
| 897 | var a = []; |
| 898 | while (!is("punc", "}")) { |
| 899 | if (is("eof")) unexpected(); |
| 900 | a.push(statement()); |
| 901 | } |
| 902 | next(); |
| 903 | return a; |
| 904 | }; |
| 905 | |
| 906 | var switch_block_ = curry(in_loop, function(){ |
| 907 | expect("{"); |
no test coverage detected