* Find the line/column position in the source code for a given offset * * Searching for a given offset takes O(log N) time where N is the number of * lines of code. * * @param offset The index for which to find the position
(offset: number)
| 32 | * @param offset The index for which to find the position |
| 33 | */ |
| 34 | find(offset: number): Position |
| 35 | |
| 36 | /** |
| 37 | * Find the most likely byte offset for given a position |
no outgoing calls
no test coverage detected