()
| 90 | } |
| 91 | |
| 92 | createJSXNode(): Marker { |
| 93 | this.collectComments(); |
| 94 | return { |
| 95 | index: this.scanner.index, |
| 96 | line: this.scanner.lineNumber, |
| 97 | column: this.scanner.index - this.scanner.lineStart |
| 98 | }; |
| 99 | } |
| 100 | |
| 101 | createJSXChildNode(): Marker { |
| 102 | return { |
no test coverage detected