()
| 525 | } |
| 526 | |
| 527 | private ensureExitHook(): void { |
| 528 | if (this.exitHookInstalled || !this.installExitHook) return; |
| 529 | this.exitHookInstalled = true; |
| 530 | registerForExit(this); |
| 531 | } |
| 532 | |
| 533 | private debug(msg: string): void { |
| 534 | if (this.env.CODEGRAPH_TELEMETRY_DEBUG === '1') { |
no test coverage detected