()
| 2084 | } |
| 2085 | |
| 2086 | parseVariableStatement(): Node.VariableDeclaration { |
| 2087 | const node = this.createNode(); |
| 2088 | this.expectKeyword('var'); |
| 2089 | const declarations = this.parseVariableDeclarationList({ inFor: false }); |
| 2090 | this.consumeSemicolon(); |
| 2091 | |
| 2092 | return this.finalize(node, new Node.VariableDeclaration(declarations, 'var')); |
| 2093 | } |
| 2094 | |
| 2095 | // https://tc39.github.io/ecma262/#sec-empty-statement |
| 2096 |
no test coverage detected