()
| 2620 | // https://tc39.github.io/ecma262/#sec-debugger-statement |
| 2621 | |
| 2622 | parseDebuggerStatement(): Node.DebuggerStatement { |
| 2623 | const node = this.createNode(); |
| 2624 | this.expectKeyword('debugger'); |
| 2625 | this.consumeSemicolon(); |
| 2626 | return this.finalize(node, new Node.DebuggerStatement()); |
| 2627 | } |
| 2628 | |
| 2629 | // https://tc39.github.io/ecma262/#sec-ecmascript-language-statements-and-declarations |
| 2630 |
no test coverage detected