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

Method isExpansionFormStart

packages/compiler/src/ml_parser/lexer.ts:1481–1489  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1479 }
1480
1481 private isExpansionFormStart(): boolean {
1482 if (this._cursor.peek() !== chars.$LBRACE) {
1483 return false;
1484 }
1485 const start = this._cursor.clone();
1486 const isInterpolation = this._attemptStr(INTERPOLATION.start);
1487 this._cursor = start;
1488 return !isInterpolation;
1489 }
1490}
1491
1492function isNotWhitespace(code: number): boolean {

Callers 2

_isTextEndMethod · 0.95

Calls 3

_attemptStrMethod · 0.95
peekMethod · 0.65
cloneMethod · 0.65

Tested by

no test coverage detected