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

Function instrument

Extension/src/instrumentation.ts:33–35  ·  view source on GitHub ↗
(instance: T, options?: { ignore?: string[]; name?: string })

Source from the content-addressed store, hash-verified

31
32/** Adds instrumentation to all the members of an object when instrumentation is enabled */
33export function instrument<T extends Record<string, any>>(instance: T, options?: { ignore?: string[]; name?: string }): T {
34 return services.instrument(instance, options);
35}
36
37/** sends a perf message to the monitor */
38export function sendInstrumentation(message: PerfMessage): void {

Callers 5

activateFunction · 0.90
initializeFunction · 0.90
createClientFunction · 0.90
initMethod · 0.90
activateFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected