(tView: TView, lView: LView)
| 189 | * @param lView The view from which elements should be added or removed |
| 190 | */ |
| 191 | export function removeViewFromDOM(tView: TView, lView: LView): void { |
| 192 | detachViewFromDOM(tView, lView); |
| 193 | lView[HOST] = null; |
| 194 | lView[T_HOST] = null; |
| 195 | } |
| 196 | |
| 197 | /** |
| 198 | * Adds all DOM elements associated with a view. |
no test coverage detected
searching dependent graphs…