()
| 273 | } |
| 274 | |
| 275 | public getRoots(): Array<WorkspaceFolderNode | ProjectNode> { |
| 276 | return [ |
| 277 | // WF or Projects can be roots (projects are roots if zero or one WF). |
| 278 | ...this.workspaceFolderNodes.values(), |
| 279 | ...this.projectNodes.values(), |
| 280 | ] |
| 281 | .filter((n) => !n.parent); |
| 282 | } |
| 283 | |
| 284 | public clearAll(): void { |
| 285 | this.suites.clear(); |