()
| 2658 | }; |
| 2659 | |
| 2660 | const interruptActiveTurn = async () => { |
| 2661 | suppressReadyForInterruptedTurn(this.currentTurnId); |
| 2662 | await this.interruptActiveTurns('slash command'); |
| 2663 | }; |
| 2664 | |
| 2665 | const resumeExistingThreadForCompact = async (mode: EnhancedMode): Promise<string | null> => { |
| 2666 | if (this.currentThreadId && this.currentThreadId !== invalidThreadId) { |
nothing calls this directly
no test coverage detected