(message: string, items?: string[])
| 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> { |
no test coverage detected