(line: number, column: number)
| 3 | import type { CursorPosition } from "../types.js"; |
| 4 | |
| 5 | function pos(line: number, column: number): CursorPosition { |
| 6 | return { line, column }; |
| 7 | } |
| 8 | |
| 9 | describe("codeEditor.scroll - cursor follow and clamping", () => { |
| 10 | const visibilityCases = [ |
no outgoing calls
no test coverage detected