(position: number)
| 40 | } |
| 41 | |
| 42 | setCursor(position: number): void { |
| 43 | this._cursor = Math.max(0, Math.min(position, this._text.length)); |
| 44 | } |
| 45 | |
| 46 | insertText(text: string): void { |
| 47 | // Normalize line endings to prevent terminal display issues |
no outgoing calls
no test coverage detected