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

Function isBlockNameChar

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

Source from the content-addressed store, hash-verified

1507}
1508
1509function isBlockNameChar(code: number): boolean {
1510 return chars.isAsciiLetter(code) || chars.isDigit(code) || code === chars.$_;
1511}
1512
1513function isBlockParameterChar(code: number): boolean {
1514 return code !== chars.$SEMICOLON && isNotWhitespace(code);

Callers 1

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