()
| 359 | } |
| 360 | |
| 361 | private removeAllChildViews() { |
| 362 | for (const tabView of this.allLoadedTabViews.values()) { |
| 363 | if (!this.isDestroyed()) { |
| 364 | this.contentView.removeChildView(tabView); |
| 365 | } |
| 366 | tabView?.destroy(); |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | async switchWorkspace(workspaceId: string) { |
| 371 | console.log("switchWorkspace", workspaceId, this.waveWindowId); |
no test coverage detected