| 100 | } |
| 101 | |
| 102 | class ServiceWithMultiDep { |
| 103 | constructor(readonly locale: string[]) {} |
| 104 | |
| 105 | static ɵprov = ɵɵdefineInjectable({ |
| 106 | token: ServiceWithMultiDep, |
| 107 | providedIn: null, |
| 108 | factory: () => new ServiceWithMultiDep(ɵɵinject(LOCALE)), |
| 109 | }); |
| 110 | } |
| 111 | |
| 112 | class ServiceTwo { |
| 113 | static ɵprov = ɵɵdefineInjectable({ |
nothing calls this directly
no test coverage detected
searching dependent graphs…