MCPcopy Create free account
hub / github.com/angular/angular / isPrefixEnd

Function isPrefixEnd

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

Source from the content-addressed store, hash-verified

1507}
1508
1509function isPrefixEnd(code: number): boolean {
1510 return (
1511 (code < chars.$a || chars.$z < code) &&
1512 (code < chars.$A || chars.$Z < code) &&
1513 (code < chars.$0 || code > chars.$9)
1514 );
1515}
1516
1517function isDigitEntityEnd(code: number): boolean {
1518 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