(meta: Injectable)
| 102 | } |
| 103 | |
| 104 | function isUseExistingProvider(meta: Injectable): meta is Injectable & ExistingSansProvider { |
| 105 | return (meta as ExistingSansProvider).useExisting !== undefined; |
| 106 | } |
| 107 | |
| 108 | function getInjectableMetadata(type: Type<any>, srcMeta?: Injectable): R3InjectableMetadataFacade { |
| 109 | // Allow the compilation of a class with a `@Injectable()` decorator without parameters |
no outgoing calls
no test coverage detected
searching dependent graphs…