MCPcopy
hub / github.com/angular/angular / renderChildComponents

Function renderChildComponents

packages/core/src/render3/instructions/render.ts:158–162  ·  view source on GitHub ↗

Renders child components in the current view (creation mode).

(hostLView: LView, components: number[])

Source from the content-addressed store, hash-verified

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

Callers 1

renderViewFunction · 0.85

Calls 1

renderComponentFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…