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

Function getTStylingRangeTail

packages/core/src/render3/interfaces/styling.ts:213–217  ·  view source on GitHub ↗
(tStylingRange: TStylingRange)

Source from the content-addressed store, hash-verified

211}
212
213export function getTStylingRangeTail(tStylingRange: TStylingRange): number {
214 ngDevMode && assertNumber(tStylingRange, 'expected number');
215 const next = getTStylingRangeNext(tStylingRange);
216 return next === 0 ? getTStylingRangePrev(tStylingRange) : next;
217}

Callers

nothing calls this directly

Calls 3

assertNumberFunction · 0.90
getTStylingRangeNextFunction · 0.85
getTStylingRangePrevFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…