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

Function isBlockParameterChar

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

Source from the content-addressed store, hash-verified

1529}
1530
1531function isBlockParameterChar(code: number): boolean {
1532 return code !== chars.$SEMICOLON && isNotWhitespace(code);
1533}
1534
1535function isSelectorlessNameStart(code: number): boolean {
1536 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