()
| 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); |
no test coverage detected