| 90 | } |
| 91 | |
| 92 | class ServiceWithMissingDep { |
| 93 | constructor(readonly service: Service) {} |
| 94 | |
| 95 | static ɵprov = ɵɵdefineInjectable({ |
| 96 | token: ServiceWithMissingDep, |
| 97 | providedIn: null, |
| 98 | factory: () => new ServiceWithMissingDep(ɵɵinject(Service)), |
| 99 | }); |
| 100 | } |
| 101 | |
| 102 | class ServiceWithMultiDep { |
| 103 | constructor(readonly locale: string[]) {} |
nothing calls this directly
no test coverage detected
searching dependent graphs…