()
| 1390 | // https://tc39.github.io/ecma262/#sec-unary-operators |
| 1391 | |
| 1392 | parseAwaitExpression(): Node.AwaitExpression { |
| 1393 | const node = this.createNode(); |
| 1394 | this.nextToken(); |
| 1395 | const argument = this.parseUnaryExpression(); |
| 1396 | return this.finalize(node, new Node.AwaitExpression(argument)); |
| 1397 | } |
| 1398 | |
| 1399 | parseUnaryExpression(): Node.Expression { |
| 1400 | let expr; |
no test coverage detected