(changes: SimpleChanges<this>)
| 146 | } |
| 147 | |
| 148 | ngOnChanges(changes: SimpleChanges<this>) { |
| 149 | if (changes['menuPosition'] && this.overlayRef) { |
| 150 | this.overlayRef.updatePositionStrategy(this._getOverlayPositionStrategy()); |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | override ngOnDestroy(): void { |
| 155 | this._cleanupMouseenter(); |
nothing calls this directly
no test coverage detected