()
| 1096 | } |
| 1097 | |
| 1098 | getLines(): string[] { |
| 1099 | return [...this.state.lines]; |
| 1100 | } |
| 1101 | |
| 1102 | getCursor(): { line: number; col: number } { |
| 1103 | return { line: this.state.cursorLine, col: this.state.cursorCol }; |
no outgoing calls
no test coverage detected