()
| 996 | }; |
| 997 | |
| 998 | function block_() { |
| 999 | expect("{"); |
| 1000 | var a = []; |
| 1001 | while (!is("punc", "}")) { |
| 1002 | if (is("eof")) unexpected(); |
| 1003 | a.push(statement()); |
| 1004 | } |
| 1005 | next(); |
| 1006 | return a; |
| 1007 | }; |
| 1008 | |
| 1009 | var switch_block_ = curry(in_loop, function(){ |
| 1010 | expect("{"); |