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

Function isSelectorlessNameChar

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

Source from the content-addressed store, hash-verified

1519}
1520
1521function isSelectorlessNameChar(code: number): boolean {
1522 return chars.isAsciiLetter(code) || chars.isDigit(code) || code === chars.$_;
1523}
1524
1525function isAttributeTerminator(code: number): boolean {
1526 return code === chars.$SLASH || code === chars.$GT || code === chars.$LT || code === chars.$EOF;

Callers 2

_consumeComponentNameMethod · 0.85
_consumeDirectiveMethod · 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…