()
| 117 | } |
| 118 | |
| 119 | public dispose(): void { |
| 120 | this.providers.forEach(provider => { |
| 121 | getCustomConfigProviders().remove(provider); |
| 122 | provider.dispose(); |
| 123 | }); |
| 124 | this.providers = []; |
| 125 | } |
| 126 | |
| 127 | public getTestHook(): CppToolsTestHook { |
| 128 | return test.getTestHook(); |
nothing calls this directly
no test coverage detected