()
| 1173 | } |
| 1174 | |
| 1175 | parseIdentifierName(): Node.Identifier { |
| 1176 | const node = this.createNode(); |
| 1177 | const token = this.nextToken(); |
| 1178 | if (!this.isIdentifierName(token)) { |
| 1179 | this.throwUnexpectedToken(token); |
| 1180 | } |
| 1181 | return this.finalize(node, new Node.Identifier(token.value)); |
| 1182 | } |
| 1183 | |
| 1184 | parseNewExpression(): Node.MetaProperty | Node.NewExpression { |
| 1185 | const node = this.createNode(); |
no test coverage detected