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

Function isExpansionCaseStart

packages/compiler/src/ml_parser/lexer.ts:1530–1532  ·  view source on GitHub ↗
(peek: number)

Source from the content-addressed store, hash-verified

1528}
1529
1530function isExpansionCaseStart(peek: number): boolean {
1531 return peek !== chars.$RBRACE;
1532}
1533
1534function compareCharCodeCaseInsensitive(code1: number, code2: number): boolean {
1535 return toUpperCaseCharCode(code1) === toUpperCaseCharCode(code2);

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected