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

Function isBlockParameterChar

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

Source from the content-addressed store, hash-verified

1544}
1545
1546function isBlockParameterChar(code: number): boolean {
1547 return code !== chars.$SEMICOLON && isNotWhitespace(code);
1548}
1549
1550function isSelectorlessNameStart(code: number): boolean {
1551 return code === chars.$_ || (code >= chars.$A && code <= chars.$Z);

Callers

nothing calls this directly

Calls 1

isNotWhitespaceFunction · 0.85

Tested by

no test coverage detected