(from: number, to?: number)
| 528 | * will cover only one line. |
| 529 | */ |
| 530 | export function lines(from: number, to?: number): CodeRange[] { |
| 531 | return [ |
| 532 | [ |
| 533 | [from, 0], |
| 534 | [to ?? from, Infinity], |
| 535 | ], |
| 536 | ]; |
| 537 | } |
| 538 | |
| 539 | /** |
| 540 | * Create a selection range that highlights the given word. |
no outgoing calls
no test coverage detected