MCPcopy Create free account
hub / github.com/angular/angular / getViewRefs

Function getViewRefs

packages/core/src/linker/view_container_ref.ts:654–656  ·  view source on GitHub ↗
(lContainer: LContainer)

Source from the content-addressed store, hash-verified

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

Callers 2

getMethod · 0.85
indexOfMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected