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

Method showErrorMessage

Extension/src/logger.ts:74–81  ·  view source on GitHub ↗
(message: string, items?: string[])

Source from the content-addressed store, hash-verified

72
73 // We should not await on this function.
74 public showErrorMessage(message: string, items?: string[]): Thenable<string | undefined> {
75 this.appendLine(message);
76
77 if (!items) {
78 return vscode.window.showErrorMessage(message);
79 }
80 return vscode.window.showErrorMessage(message, ...items);
81 }
82}
83
84export let outputChannel: vscode.OutputChannel | undefined;

Callers 15

expandStringFunction · 0.80
activateFunction · 0.80
checkVsixCompatibilityFunction · 0.80
onDataMethod · 0.80
failedFunction · 0.80
selectConfigurationMethod · 0.80
resolvePreLaunchTaskMethod · 0.80
singleDeployStepMethod · 0.80

Calls 1

appendLineMethod · 0.95

Tested by

no test coverage detected