(id: string)
| 1576 | } |
| 1577 | |
| 1578 | private hasViews(id: string): boolean { |
| 1579 | const viewContainer = this.viewDescriptorService.getViewContainerById(id); |
| 1580 | if (!viewContainer) { |
| 1581 | return false; |
| 1582 | } |
| 1583 | |
| 1584 | const viewContainerModel = this.viewDescriptorService.getViewContainerModel(viewContainer); |
| 1585 | if (!viewContainerModel) { |
| 1586 | return false; |
| 1587 | } |
| 1588 | |
| 1589 | return viewContainerModel.activeViewDescriptors.length >= 1; |
| 1590 | } |
| 1591 | |
| 1592 | private adjustPartPositions(sideBarPosition: Position, panelAlignment: PanelAlignment, panelPosition: Position): void { |
| 1593 |
nothing calls this directly
no test coverage detected