(line: number, column: number)
| 15 | import type { CursorPosition, EditorSelection } from "../types.js"; |
| 16 | |
| 17 | function pos(line: number, column: number): CursorPosition { |
| 18 | return { line, column }; |
| 19 | } |
| 20 | |
| 21 | function sel( |
| 22 | anchorLine: number, |
no outgoing calls
no test coverage detected