(wf: { name: string, path: string, uri: URI })
| 339 | } |
| 340 | |
| 341 | private getOrCreateWorkspaceFolderNode(wf: { name: string, path: string, uri: URI }): WorkspaceFolderNode { |
| 342 | let node = this.workspaceFolderNodes.get(wf.path); |
| 343 | |
| 344 | if (!node) { |
| 345 | node = new WorkspaceFolderNode(wf.name, wf.path); |
| 346 | this.workspaceFolderNodes.set(wf.path, node); |
| 347 | this.updateNode({ node }); |
| 348 | } |
| 349 | |
| 350 | return node; |
| 351 | } |
| 352 | |
| 353 | public clearSuiteOrDirectory(suiteOrDirectoryPath: string): void { |
| 354 | // We can't tell if it's a file or directory because it's already been deleted, so just |
no test coverage detected