()
| 350 | } |
| 351 | |
| 352 | detachFromAppRef() { |
| 353 | this._appRef = null; |
| 354 | const isRoot = isRootView(this._lView); |
| 355 | const declarationContainer = this._lView[DECLARATION_LCONTAINER]; |
| 356 | if (declarationContainer !== null && !isRoot) { |
| 357 | detachMovedView(declarationContainer, this._lView); |
| 358 | } |
| 359 | detachViewFromDOM(this._lView[TVIEW], this._lView); |
| 360 | } |
| 361 | |
| 362 | attachToAppRef(appRef: ApplicationRef) { |
| 363 | if (this._attachedToViewContainer) { |
no test coverage detected