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

Function isBlockParameterChar

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

Source from the content-addressed store, hash-verified

1511}
1512
1513function isBlockParameterChar(code: number): boolean {
1514 return code !== chars.$SEMICOLON && isNotWhitespace(code);
1515}
1516
1517function isSelectorlessNameStart(code: number): boolean {
1518 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

Used in the wild real call sites across dependent graphs

searching dependent graphs…