(location: ParseLocation)
| 3871 | } |
| 3872 | |
| 3873 | function humanizeLineColumn(location: ParseLocation): string { |
| 3874 | return `${location.line}:${location.col}`; |
| 3875 | } |
| 3876 | |
| 3877 | function tokenizeAndHumanizeLineColumn(input: string, options?: TokenizeOptions): any[] { |
| 3878 | return tokenizeWithoutErrors(input, options).tokens.map((token) => [ |
no outgoing calls
no test coverage detected