(lView: LView, tNode: TNode)
| 404 | } |
| 405 | |
| 406 | export function clearLViewNodeAnimationResolvers(lView: LView, tNode: TNode) { |
| 407 | const nodeAnimations = getLViewLeaveAnimations(lView).get(tNode.index); |
| 408 | if (nodeAnimations) nodeAnimations.resolvers = undefined; |
| 409 | } |
| 410 | |
| 411 | export function leaveAnimationFunctionCleanup( |
| 412 | lView: LView, |
no test coverage detected