()
| 294 | } |
| 295 | |
| 296 | private assertOpen(): void { |
| 297 | if (this.disposeRequested) { |
| 298 | throw new Error('GitRuntime disposed'); |
| 299 | } |
| 300 | } |
| 301 | |
| 302 | private async disposeIfIdle(): Promise<void> { |
| 303 | if (!this.disposeRequested) return; |
no outgoing calls
no test coverage detected