MCPcopy
hub / github.com/angular/angular / syncViewWithBlueprint

Function syncViewWithBlueprint

packages/core/src/render3/instructions/render.ts:80–84  ·  view source on GitHub ↗
(tView: TView, lView: LView)

Source from the content-addressed store, hash-verified

78 * @param lView The view to sync
79 */
80export function syncViewWithBlueprint(tView: TView, lView: LView) {
81 for (let i = lView.length; i < tView.blueprint.length; i++) {
82 lView.push(tView.blueprint[i]);
83 }
84}
85
86/**
87 * Processes a view in the creation mode. This includes a number of steps in a specific order:

Callers 1

renderComponentFunction · 0.85

Calls 1

pushMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…