| 1 | export interface SourceLocation { |
| 2 | line: number |
| 3 | column: number |
| 4 | } |
| 5 | |
| 6 | export default function getLocator(source: string): (index: number) => SourceLocation { |
| 7 | const originalLines = source.split('\n') |
nothing calls this directly
no outgoing calls
no test coverage detected