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

Method isExpansionFormStart

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

Source from the content-addressed store, hash-verified

1446 }
1447
1448 private isExpansionFormStart(): boolean {
1449 if (this._cursor.peek() !== chars.$LBRACE) {
1450 return false;
1451 }
1452 const start = this._cursor.clone();
1453 const isInterpolation = this._attemptStr(INTERPOLATION.start);
1454 this._cursor = start;
1455 return !isInterpolation;
1456 }
1457}
1458
1459function 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