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

Method _requireStr

packages/compiler/src/ml_parser/lexer.ts:620–628  ·  view source on GitHub ↗
(chars: string)

Source from the content-addressed store, hash-verified

618 }
619
620 private _requireStr(chars: string) {
621 const location = this._cursor.clone();
622 if (!this._attemptStr(chars)) {
623 throw this._createError(
624 _unexpectedCharacterErrorMsg(this._cursor.peek()),
625 this._cursor.getSpan(location),
626 );
627 }
628 }
629
630 private _attemptCharCodeUntilFn(predicate: (code: number) => boolean) {
631 while (!predicate(this._cursor.peek())) {

Callers 3

_consumeCommentMethod · 0.95
_consumeCdataMethod · 0.95

Calls 6

_attemptStrMethod · 0.95
_createErrorMethod · 0.95
cloneMethod · 0.65
peekMethod · 0.65
getSpanMethod · 0.65

Tested by

no test coverage detected