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

Function isNameEnd

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

Source from the content-addressed store, hash-verified

1461}
1462
1463function isNameEnd(code: number): boolean {
1464 return (
1465 chars.isWhitespace(code) ||
1466 code === chars.$GT ||
1467 code === chars.$LT ||
1468 code === chars.$SLASH ||
1469 code === chars.$SQ ||
1470 code === chars.$DQ ||
1471 code === chars.$EQ ||
1472 code === chars.$EOF
1473 );
1474}
1475
1476function isPrefixEnd(code: number): boolean {
1477 return (

Callers 2

_consumeAttributeNameMethod · 0.85
endPredicateMethod · 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…