| 136 | } |
| 137 | |
| 138 | class UseFactory { |
| 139 | constructor(readonly msg: string) {} |
| 140 | static ɵprov = ɵɵngDeclareInjectable({ |
| 141 | type: UseFactory, |
| 142 | useFactory: () => new UseFactory('from factory'), |
| 143 | }); |
| 144 | } |
| 145 | |
| 146 | class UseValue { |
| 147 | constructor(readonly msg: string) {} |
nothing calls this directly
no test coverage detected