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

Function isBlockNameChar

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

Source from the content-addressed store, hash-verified

1525}
1526
1527function isBlockNameChar(code: number): boolean {
1528 return chars.isAsciiLetter(code) || chars.isDigit(code) || code === chars.$_;
1529}
1530
1531function isBlockParameterChar(code: number): boolean {
1532 return code !== chars.$SEMICOLON && isNotWhitespace(code);

Callers 1

_getBlockNameMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected