()
| 124 | } |
| 125 | |
| 126 | get cursorX(): number { |
| 127 | const wasmTerm = this.getWasmTerm(); |
| 128 | if (!wasmTerm) return 0; |
| 129 | return wasmTerm.getCursor().x; |
| 130 | } |
| 131 | |
| 132 | get cursorY(): number { |
| 133 | const wasmTerm = this.getWasmTerm(); |
nothing calls this directly
no test coverage detected