(route: Route)
| 51 | } |
| 52 | |
| 53 | export function canLoadFails(route: Route): never { |
| 54 | throw navigationCancelingError( |
| 55 | (typeof ngDevMode === 'undefined' || ngDevMode) && |
| 56 | `Cannot load children because the guard of the route "path: '${route.path}'" returned false`, |
| 57 | NavigationCancellationCode.GuardRejected, |
| 58 | ); |
| 59 | } |
| 60 | |
| 61 | export class ApplyRedirects { |
| 62 | constructor( |
no test coverage detected
searching dependent graphs…