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

Method removeNotifyReadyTimer

Extension/src/cppTools.ts:43–51  ·  view source on GitHub ↗
(provider: CustomConfigurationProvider1)

Source from the content-addressed store, hash-verified

41 }
42
43 private removeNotifyReadyTimer(provider: CustomConfigurationProvider1): void {
44 if (this.version >= Version.v2) {
45 const timer: NodeJS.Timeout | undefined = this.timers.get(provider.extensionId);
46 if (timer) {
47 this.timers.delete(provider.extensionId);
48 clearTimeout(timer);
49 }
50 }
51 }
52
53 public getVersion(): Version {
54 return this.version;

Callers 1

notifyReadyMethod · 0.95

Calls 2

deleteMethod · 0.80
getMethod · 0.45

Tested by

no test coverage detected