(lContainer: LContainer)
| 629 | } |
| 630 | |
| 631 | function getViewRefs(lContainer: LContainer): ViewRef[] | null { |
| 632 | return lContainer[VIEW_REFS] as ViewRef[]; |
| 633 | } |
| 634 | |
| 635 | function getOrCreateViewRefs(lContainer: LContainer): ViewRef[] { |
| 636 | return (lContainer[VIEW_REFS] || (lContainer[VIEW_REFS] = [])) as ViewRef[]; |