(dir: string)
| 672 | } |
| 673 | |
| 674 | async listDir(dir: string): Promise<[string, FileType][]> { |
| 675 | const entries = await this.ideUtils.readDirectory(vscode.Uri.parse(dir)); |
| 676 | return entries === null ? [] : (entries as any); |
| 677 | } |
| 678 | |
| 679 | private getIdeSettingsSync(): IdeSettings { |
| 680 | const settings = vscode.workspace.getConfiguration(EXTENSION_NAME); |
nothing calls this directly
no test coverage detected