()
| 290 | } |
| 291 | |
| 292 | public cleanup(): void { |
| 293 | // Cancel any pending idle cleanup |
| 294 | if (this.idleCallbackId !== null) { |
| 295 | safeCancelIdleCallback(this.idleCallbackId) |
| 296 | this.idleCallbackId = null |
| 297 | } |
| 298 | |
| 299 | // Perform cleanup immediately (used when explicitly called) |
| 300 | this.performCleanup() |
| 301 | } |
| 302 | } |
no test coverage detected