(parentLocation: RelativeInjectorLocation)
| 16 | |
| 17 | /// Parent Injector Utils /////////////////////////////////////////////////////////////// |
| 18 | export function hasParentInjector(parentLocation: RelativeInjectorLocation): boolean { |
| 19 | return parentLocation !== NO_PARENT_INJECTOR; |
| 20 | } |
| 21 | |
| 22 | export function getParentInjectorIndex(parentLocation: RelativeInjectorLocation): number { |
| 23 | if (ngDevMode) { |
no outgoing calls
no test coverage detected
searching dependent graphs…