(tView: TView, lView: LView)
| 195 | * @param lView The view from which elements should be added or removed |
| 196 | */ |
| 197 | export function removeViewFromDOM(tView: TView, lView: LView): void { |
| 198 | detachViewFromDOM(tView, lView); |
| 199 | lView[HOST] = null; |
| 200 | lView[T_HOST] = null; |
| 201 | } |
| 202 | |
| 203 | /** |
| 204 | * Adds all DOM elements associated with a view. |
no test coverage detected