()
| 99 | } |
| 100 | |
| 101 | createJSXChildNode(): Marker { |
| 102 | return { |
| 103 | index: this.scanner.index, |
| 104 | line: this.scanner.lineNumber, |
| 105 | column: this.scanner.index - this.scanner.lineStart |
| 106 | }; |
| 107 | } |
| 108 | |
| 109 | scanXHTMLEntity(quote: string): string { |
| 110 | let result = '&'; |
no outgoing calls
no test coverage detected