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

Method showInformationMessage

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

Source from the content-addressed store, hash-verified

52
53 // We should not await on this function.
54 public showInformationMessage(message: string, items?: string[]): Thenable<string | undefined> {
55 this.appendLine(message);
56
57 if (!items) {
58 return vscode.window.showInformationMessage(message);
59 }
60 return vscode.window.showInformationMessage(message, ...items);
61 }
62
63 // We should not await on this function.
64 public showWarningMessage(message: string, items?: string[]): Thenable<string | undefined> {

Callers 15

promptReloadWindowFunction · 0.80
removeSshTargetImplFunction · 0.80
showMessageWindowFunction · 0.80
showPromptMethod · 0.80
logTelemetryMethod · 0.80
installCompilerFunction · 0.80
onSelectConfigurationFunction · 0.80
onEditConfigurationJSONFunction · 0.80

Calls 1

appendLineMethod · 0.95

Tested by

no test coverage detected