()
| 419 | } |
| 420 | |
| 421 | async getOpenFiles(): Promise<string[]> { |
| 422 | return this.ideUtils.getOpenFiles().map((uri) => uri.toString()); |
| 423 | } |
| 424 | |
| 425 | async getCurrentFile() { |
| 426 | if (!vscode.window.activeTextEditor) { |
nothing calls this directly
no test coverage detected