()
| 7338 | } |
| 7339 | |
| 7340 | function parseBlock() { |
| 7341 | var block, |
| 7342 | marker = markerCreate() |
| 7343 | |
| 7344 | expect("{") |
| 7345 | |
| 7346 | block = parseStatementList() |
| 7347 | |
| 7348 | expect("}") |
| 7349 | |
| 7350 | return markerApply(marker, delegate.createBlockStatement(block)) |
| 7351 | } |
| 7352 | |
| 7353 | // 12.2 Variable Statement |
| 7354 |
no test coverage detected