MCPcopy
hub / github.com/angular/angular / getLViewLeaveAnimations

Function getLViewLeaveAnimations

packages/core/src/animation/utils.ts:262–265  ·  view source on GitHub ↗
(lView: LView)

Source from the content-addressed store, hash-verified

260 * Retrieves the list of specified leave animations from the lView
261 */
262export function getLViewLeaveAnimations(lView: LView): Map<number, LeaveNodeAnimations> {
263 const animationData = (lView[ANIMATIONS] ??= {});
264 return (animationData.leave ??= new Map());
265}
266
267/**
268 * Gets the list of classes from a passed in value

Callers 6

ɵɵanimateLeaveFunction · 0.90
runLeaveAnimationsFunction · 0.90
animateLeaveClassRunnerFunction · 0.90
ɵɵanimateLeaveListenerFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…