MCPcopy Index your code
hub / github.com/angular/angular / markViewForRefresh

Function markViewForRefresh

packages/core/src/render3/util/view_utils.ts:208–216  ·  view source on GitHub ↗
(lView: LView)

Source from the content-addressed store, hash-verified

206 * parents.
207 */
208export function markViewForRefresh(lView: LView) {
209 if (lView[FLAGS] & LViewFlags.RefreshView) {
210 return;
211 }
212 lView[FLAGS] |= LViewFlags.RefreshView;
213 if (viewAttachedToChangeDetector(lView)) {
214 markAncestorsForTraversal(lView);
215 }
216}
217
218/**
219 * Walks up the LView hierarchy.

Callers 4

markForRefreshFunction · 0.90
applyDeferBlockStateFunction · 0.90

Calls 2

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…