(str: string)
| 816 | } |
| 817 | |
| 818 | private capture(str: string): void { |
| 819 | if (!this.consumeOptional(str)) { |
| 820 | throw new RuntimeError( |
| 821 | RuntimeErrorCode.UNEXPECTED_VALUE_IN_URL, |
| 822 | (typeof ngDevMode === 'undefined' || ngDevMode) && `Expected "${str}".`, |
| 823 | ); |
| 824 | } |
| 825 | } |
| 826 | } |
| 827 | |
| 828 | export function createRoot(rootCandidate: UrlSegmentGroup): UrlSegmentGroup { |
no test coverage detected