MCPcopy Index your code
hub / github.com/angular/angular / getViewRefs

Function getViewRefs

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

Source from the content-addressed store, hash-verified

629}
630
631function getViewRefs(lContainer: LContainer): ViewRef[] | null {
632 return lContainer[VIEW_REFS] as ViewRef[];
633}
634
635function getOrCreateViewRefs(lContainer: LContainer): ViewRef[] {
636 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

Used in the wild real call sites across dependent graphs

searching dependent graphs…