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

Function getTStylingRangeNext

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

Source from the content-addressed store, hash-verified

189}
190
191export function getTStylingRangeNext(tStylingRange: TStylingRange): number {
192 ngDevMode && assertNumber(tStylingRange, 'expected number');
193 return (tStylingRange & StylingRange.NEXT_MASK) >> StylingRange.NEXT_SHIFT;
194}
195
196export function setTStylingRangeNext(tStylingRange: TStylingRange, next: number): TStylingRange {
197 ngDevMode && assertNumber(tStylingRange, 'expected number');

Callers 12

styling_spec.tsFile · 0.90
expectTStylingKeysFunction · 0.90
expectRangeFunction · 0.90
expectTDataFunction · 0.90
expectPriorityOrderFunction · 0.90
updateStylingFunction · 0.90
findStylingValueFunction · 0.90
insertTStylingBindingFunction · 0.90
markDuplicatesFunction · 0.90
getTStylingRangeTailFunction · 0.85

Calls 1

assertNumberFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…