(line: number, column: number)
| 10 | import type { CursorPosition, EditorSelection } from "../types.js"; |
| 11 | |
| 12 | function pos(line: number, column: number): CursorPosition { |
| 13 | return { line, column }; |
| 14 | } |
| 15 | |
| 16 | function selection(anchor: CursorPosition, active: CursorPosition): EditorSelection { |
| 17 | return { anchor, active }; |
no outgoing calls
no test coverage detected