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

Method _requireStr

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

Source from the content-addressed store, hash-verified

612 }
613
614 private _requireStr(chars: string) {
615 const location = this._cursor.clone();
616 if (!this._attemptStr(chars)) {
617 throw this._createError(
618 _unexpectedCharacterErrorMsg(this._cursor.peek()),
619 this._cursor.getSpan(location),
620 );
621 }
622 }
623
624 private _attemptCharCodeUntilFn(predicate: (code: number) => boolean) {
625 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