(location: ParseLocation)
| 3888 | } |
| 3889 | |
| 3890 | function humanizeLineColumn(location: ParseLocation): string { |
| 3891 | return `${location.line}:${location.col}`; |
| 3892 | } |
| 3893 | |
| 3894 | function tokenizeAndHumanizeLineColumn(input: string, options?: TokenizeOptions): any[] { |
| 3895 | return tokenizeWithoutErrors(input, options).tokens.map((token) => [ |
no outgoing calls
no test coverage detected