MCPcopy Create free account
hub / github.com/microsoft/vscode-cpptools / notify

Function notify

Extension/src/Utility/Eventing/emitter.ts:59–63  ·  view source on GitHub ↗
(event: string, tOrD: any, data?: ArbitraryObject)

Source from the content-addressed store, hash-verified

57 protected notify(event: string, data: ArbitraryObject): void;
58 protected notify(event: string, text: string, data: ArbitraryObject): void;
59 protected notify(event: string, tOrD: any, data?: ArbitraryObject): void {
60 return data ?
61 notify(event, this.descriptors, this, tOrD, data) :
62 notify(event, this.descriptors, this, tOrD);
63 }
64
65 /** immediately dispatches a notification event */
66 protected notifyNow(event: string, text: string): void;

Callers

nothing calls this directly

Calls 1

notifyFunction · 0.90

Tested by

no test coverage detected