()
| 501 | } |
| 502 | |
| 503 | parseJSXEmptyExpression(): JSXNode.JSXEmptyExpression { |
| 504 | const node = this.createJSXChildNode(); |
| 505 | this.collectComments(); |
| 506 | this.lastMarker.index = this.scanner.index; |
| 507 | this.lastMarker.line = this.scanner.lineNumber; |
| 508 | this.lastMarker.column = this.scanner.index - this.scanner.lineStart; |
| 509 | return this.finalize(node, new JSXNode.JSXEmptyExpression()); |
| 510 | } |
| 511 | |
| 512 | parseJSXExpressionContainer(): JSXNode.JSXExpressionContainer { |
| 513 | const node = this.createJSXNode(); |
no test coverage detected