(message: string, items?: string[])
| 62 | |
| 63 | // We should not await on this function. |
| 64 | public showWarningMessage(message: string, items?: string[]): Thenable<string | undefined> { |
| 65 | this.appendLine(message); |
| 66 | |
| 67 | if (!items) { |
| 68 | return vscode.window.showWarningMessage(message); |
| 69 | } |
| 70 | return vscode.window.showWarningMessage(message, ...items); |
| 71 | } |
| 72 | |
| 73 | // We should not await on this function. |
| 74 | public showErrorMessage(message: string, items?: string[]): Thenable<string | undefined> { |
no test coverage detected