()
| 320 | * Used by ESC cancellation to discard queued notifications. |
| 321 | */ |
| 322 | export function clearCommandQueue(): void { |
| 323 | if (commandQueue.length === 0) { |
| 324 | return |
| 325 | } |
| 326 | commandQueue.length = 0 |
| 327 | notifySubscribers() |
| 328 | } |
| 329 | |
| 330 | /** |
| 331 | * Clear all commands and reset snapshot. |
no test coverage detected