Renders child components in the current view (creation mode).
(hostLView: LView, components: number[])
| 156 | |
| 157 | /** Renders child components in the current view (creation mode). */ |
| 158 | function renderChildComponents(hostLView: LView, components: number[]): void { |
| 159 | for (let i = 0; i < components.length; i++) { |
| 160 | renderComponent(hostLView, components[i]); |
| 161 | } |
| 162 | } |
no test coverage detected
searching dependent graphs…