MCPcopy
hub / github.com/angular/angular / parseMatrixParams

Method parseMatrixParams

packages/router/src/url_tree.ts:703–709  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

701 }
702
703 private parseMatrixParams(): {[key: string]: string} {
704 const params: {[key: string]: string} = {};
705 while (this.consumeOptional(';')) {
706 this.parseParam(params);
707 }
708 return params;
709 }
710
711 private parseParam(params: {[key: string]: string}): void {
712 const key = matchMatrixKeySegments(this.remaining);

Callers 1

parseSegmentMethod · 0.95

Calls 2

consumeOptionalMethod · 0.95
parseParamMethod · 0.95

Tested by

no test coverage detected