()
| 1060 | } |
| 1061 | |
| 1062 | _isShowingBackdrop(): boolean { |
| 1063 | return ( |
| 1064 | (this._isDrawerOpen(this._start) && this._drawerHasBackdrop(this._start)) || |
| 1065 | (this._isDrawerOpen(this._end) && this._drawerHasBackdrop(this._end)) |
| 1066 | ); |
| 1067 | } |
| 1068 | |
| 1069 | private _isDrawerOpen(drawer: MatDrawer | null): drawer is MatDrawer { |
| 1070 | return drawer != null && drawer.opened; |
no test coverage detected