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

Method isExpansionFormStart

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

Source from the content-addressed store, hash-verified

1464 }
1465
1466 private isExpansionFormStart(): boolean {
1467 if (this._cursor.peek() !== chars.$LBRACE) {
1468 return false;
1469 }
1470 const start = this._cursor.clone();
1471 const isInterpolation = this._attemptStr(INTERPOLATION.start);
1472 this._cursor = start;
1473 return !isInterpolation;
1474 }
1475}
1476
1477function 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