(title: string, contents: string)
| 306 | } |
| 307 | |
| 308 | async showVirtualFile(title: string, contents: string): Promise<void> { |
| 309 | this.ideUtils.showVirtualFile(title, contents); |
| 310 | } |
| 311 | |
| 312 | async openFile(fileUri: string): Promise<void> { |
| 313 | await this.ideUtils.openFile(vscode.Uri.parse(fileUri)); |
nothing calls this directly
no test coverage detected