(context: PluginRuntimeContext)
| 642 | }); |
| 643 | |
| 644 | setup(context: PluginRuntimeContext): void { |
| 645 | this.lifecycleDispose = context.lifecycle.trackDisposable(() => this.closeResources(), { |
| 646 | label: "plugin:deepwiki:resources", |
| 647 | }); |
| 648 | } |
| 649 | |
| 650 | async cleanup(): Promise<void> { |
| 651 | const dispose = this.lifecycleDispose; |
nothing calls this directly
no test coverage detected