()
| 373 | } |
| 374 | |
| 375 | createNode(): Marker { |
| 376 | return { |
| 377 | index: this.startMarker.index, |
| 378 | line: this.startMarker.line, |
| 379 | column: this.startMarker.column |
| 380 | }; |
| 381 | } |
| 382 | |
| 383 | startNode(token, lastLineStart = 0): Marker { |
| 384 | let column = token.start - token.lineStart; |
no outgoing calls
no test coverage detected