(col: number, row: number)
| 1263 | return dispatchClick(this.rootNode, col, row, blank); |
| 1264 | } |
| 1265 | dispatchHover(col: number, row: number): void { |
| 1266 | if (!this.altScreenActive) return; |
| 1267 | dispatchHover(this.rootNode, col, row, this.hoveredNodes); |
| 1268 | } |
| 1269 | dispatchKeyboardEvent(parsedKey: ParsedKey): void { |
| 1270 | const target = this.focusManager.activeElement ?? this.rootNode; |
| 1271 | const event = new KeyboardEvent(parsedKey); |
nothing calls this directly
no test coverage detected