(lContainer: LContainer)
| 652 | } |
| 653 | |
| 654 | function getViewRefs(lContainer: LContainer): ViewRef[] | null { |
| 655 | return lContainer[VIEW_REFS] as ViewRef[]; |
| 656 | } |
| 657 | |
| 658 | function getOrCreateViewRefs(lContainer: LContainer): ViewRef[] { |
| 659 | return (lContainer[VIEW_REFS] || (lContainer[VIEW_REFS] = [])) as ViewRef[]; |