()
| 64 | } |
| 65 | |
| 66 | parsePrimaryExpression(): Node.Expression | JSXNode.JSXElement { |
| 67 | return this.match('<') ? this.parseJSXRoot() : super.parsePrimaryExpression(); |
| 68 | } |
| 69 | |
| 70 | startJSX() { |
| 71 | // Unwind the scanner before the lookahead token. |
nothing calls this directly
no test coverage detected