(lView: LView)
| 313 | * @param lView the lView whose parent to get |
| 314 | */ |
| 315 | export function getLViewParent(lView: LView): LView | null { |
| 316 | ngDevMode && assertLView(lView); |
| 317 | const parent = lView[PARENT]; |
| 318 | return isLContainer(parent) ? parent[PARENT] : parent; |
| 319 | } |
| 320 | |
| 321 | export function getOrCreateLViewCleanup(view: LView): any[] { |
| 322 | // top level variables should not be exported for performance reasons (PERF_NOTES.md) |
no test coverage detected
searching dependent graphs…