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