MCPcopy Index your code
hub / github.com/microsoft/vscode-cpptools / deactivate

Function deactivate

Extension/src/main.ts:177–186  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

175}
176
177export async function deactivate(): Promise<void> {
178 DebuggerExtension.dispose();
179 void Telemetry.deactivate().catch(returns.undefined);
180 disposables.forEach(d => d.dispose());
181 if (languageServiceDisabled) {
182 return;
183 }
184 await LanguageServer.deactivate();
185 disposeOutputChannels();
186}
187
188async function makeBinariesExecutable(): Promise<void> {
189 const promises: Thenable<void>[] = [];

Callers

nothing calls this directly

Calls 5

disposeOutputChannelsFunction · 0.90
disposeMethod · 0.65
deactivateMethod · 0.65
catchMethod · 0.45
forEachMethod · 0.45

Tested by

no test coverage detected