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

Function assertIndexInExpandoRange

packages/core/src/render3/assert.ts:150–153  ·  view source on GitHub ↗
(lView: LView, index: number)

Source from the content-addressed store, hash-verified

148}
149
150export function assertIndexInExpandoRange(lView: LView, index: number) {
151 const tView = lView[1];
152 assertBetween(tView.expandoStartIndex, lView.length, index);
153}
154
155export function assertBetween(lower: number, upper: number, index: number) {
156 if (!(lower <= index && index < upper)) {

Callers 2

applyMutableOpCodesFunction · 0.90
assertNodeInjectorFunction · 0.85

Calls 1

assertBetweenFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…