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

Function isPrefixEnd

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

Source from the content-addressed store, hash-verified

1492}
1493
1494function isPrefixEnd(code: number): boolean {
1495 return (
1496 (code < chars.$a || chars.$z < code) &&
1497 (code < chars.$A || chars.$Z < code) &&
1498 (code < chars.$0 || code > chars.$9)
1499 );
1500}
1501
1502function isDigitEntityEnd(code: number): boolean {
1503 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