(error: Error | undefined)
| 1416 | } |
| 1417 | |
| 1418 | recordErrorChange(error: Error | undefined): void { |
| 1419 | this.updateActiveRun( |
| 1420 | error ? { error: error.message } : { clearError: true }, |
| 1421 | ) |
| 1422 | this.emitState() |
| 1423 | } |
| 1424 | |
| 1425 | recordStatusChange(status: AIDevtoolsGenerationRunStatus): void { |
| 1426 | this.updateActiveRun({ status }) |
no test coverage detected