(removed: OverlayStackEntry)
| 479 | } |
| 480 | |
| 481 | private retargetOverlayPreFocus(removed: OverlayStackEntry): void { |
| 482 | for (const overlay of this.overlayStack) { |
| 483 | if (overlay !== removed && overlay.preFocus === removed.component) { |
| 484 | overlay.preFocus = removed.preFocus; |
| 485 | } |
| 486 | } |
| 487 | } |
| 488 | |
| 489 | private isComponentMounted(component: Component): boolean { |
| 490 | return this.children.some((child) => this.containsComponent(child, component)); |
no outgoing calls
no test coverage detected