( fn: <T>(token: ProviderToken<T>, flags?: InternalInjectFlags) => T | null, )
| 74 | * @param fn Function which it should not equal to |
| 75 | */ |
| 76 | export function assertInjectImplementationNotEqual( |
| 77 | fn: <T>(token: ProviderToken<T>, flags?: InternalInjectFlags) => T | null, |
| 78 | ) { |
| 79 | ngDevMode && |
| 80 | assertNotEqual(_injectImplementation, fn, 'Calling ɵɵinject would cause infinite recursion'); |
| 81 | } |
no test coverage detected
searching dependent graphs…