()
| 2598 | } |
| 2599 | |
| 2600 | parseFinallyClause(): Node.BlockStatement { |
| 2601 | this.expectKeyword('finally'); |
| 2602 | return this.parseBlock(); |
| 2603 | } |
| 2604 | |
| 2605 | parseTryStatement(): Node.TryStatement { |
| 2606 | const node = this.createNode(); |
no test coverage detected