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

Function getBindingRoot

packages/core/src/render3/state.ts:444–451  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

442
443// top level variables should not be exported for performance reasons (PERF_NOTES.md)
444export function getBindingRoot() {
445 const lFrame = instructionState.lFrame;
446 let index = lFrame.bindingRootIndex;
447 if (index === -1) {
448 index = lFrame.bindingRootIndex = lFrame.tView.bindingStartIndex;
449 }
450 return index;
451}
452
453export function getBindingIndex(): number {
454 return instructionState.lFrame.bindingIndex;

Callers 15

rewindBindingIndexFunction · 0.90
ɵɵpipeBind1Function · 0.90
ɵɵpipeBind2Function · 0.90
ɵɵpipeBind3Function · 0.90
ɵɵpipeBind4Function · 0.90
ɵɵpipeBindVFunction · 0.90
ɵɵpureFunction0Function · 0.90
ɵɵpureFunction1Function · 0.90
ɵɵpureFunction2Function · 0.90
ɵɵpureFunction3Function · 0.90
ɵɵpureFunction4Function · 0.90
ɵɵpureFunction5Function · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…