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

Function isPrefixEnd

packages/compiler/src/ml_parser/lexer.ts:1476–1482  ·  view source on GitHub ↗
(code: number)

Source from the content-addressed store, hash-verified

1474}
1475
1476function isPrefixEnd(code: number): boolean {
1477 return (
1478 (code < chars.$a || chars.$z < code) &&
1479 (code < chars.$A || chars.$Z < code) &&
1480 (code < chars.$0 || code > chars.$9)
1481 );
1482}
1483
1484function isDigitEntityEnd(code: number): boolean {
1485 return code === chars.$SEMICOLON || code === chars.$EOF || !chars.isAsciiHexDigit(code);

Callers 1

_consumePrefixAndNameMethod · 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…