(isGenerating: boolean)
| 518 | } |
| 519 | |
| 520 | private setSessionGenerating(isGenerating: boolean): void { |
| 521 | if (this.sessionGenerating === isGenerating) return |
| 522 | this.sessionGenerating = isGenerating |
| 523 | this.callbacksRef.current.onSessionGeneratingChange(isGenerating) |
| 524 | this.devtoolsBridge.emitSnapshot() |
| 525 | } |
| 526 | |
| 527 | private resetSessionGenerating(): void { |
| 528 | this.activeRunIds.clear() |
no test coverage detected