()
| 6579 | } |
| 6580 | |
| 6581 | function parseBlock() { |
| 6582 | var block, marker = markerCreate(); |
| 6583 | |
| 6584 | expect('{'); |
| 6585 | |
| 6586 | block = parseStatementList(); |
| 6587 | |
| 6588 | expect('}'); |
| 6589 | |
| 6590 | return markerApply(marker, delegate.createBlockStatement(block)); |
| 6591 | } |
| 6592 | |
| 6593 | // 12.2 Variable Statement |
| 6594 |
no test coverage detected