( tView: TView, lView: LView, renderer: Renderer, action: WalkTNodeTreeAction, parentRElement: RElement | null, beforeNode: RNode | null, )
| 888 | beforeNode: RNode | null, |
| 889 | ): void; |
| 890 | function applyView( |
| 891 | tView: TView, |
| 892 | lView: LView, |
| 893 | renderer: Renderer, |
| 894 | action: WalkTNodeTreeAction, |
| 895 | parentRElement: RElement | null, |
| 896 | beforeNode: RNode | null, |
| 897 | ): void { |
| 898 | applyNodes(renderer, action, tView.firstChild, lView, parentRElement, beforeNode, false); |
| 899 | } |
| 900 | |
| 901 | /** |
| 902 | * `applyProjection` performs operation on the projection. |
no test coverage detected
searching dependent graphs…