| 1 | interface Location { |
| 2 | /** Line in the parsed source (1-based). */ |
| 3 | readonly line: number; |
| 4 | /** Column in the parsed source (1-based). */ |
| 5 | readonly column: number; |
| 6 | /** Offset in the parsed source (0-based). */ |
| 7 | readonly offset: number; |
| 8 | } |
nothing calls this directly
no outgoing calls
no test coverage detected