(lView: LView, index: number)
| 569 | } |
| 570 | |
| 571 | function getLContainer(lView: LView, index: number): LContainer { |
| 572 | const lContainer = lView[index]; |
| 573 | ngDevMode && assertLContainer(lContainer); |
| 574 | |
| 575 | return lContainer; |
| 576 | } |
| 577 | |
| 578 | function clearDetachAnimationList(lContainer: LContainer, index: number): void { |
| 579 | if (lContainer.length <= CONTAINER_HEADER_OFFSET) return; |
no test coverage detected
searching dependent graphs…