| 304 | const moduleRegistrations: string[] = []; |
| 305 | |
| 306 | class ChildModule { |
| 307 | static ɵinj = ɵɵdefineInjector({ |
| 308 | imports: undefined, |
| 309 | providers: [], |
| 310 | }); |
| 311 | constructor() { |
| 312 | moduleRegistrations.push('ChildModule'); |
| 313 | } |
| 314 | } |
| 315 | |
| 316 | class RootModule { |
| 317 | static ɵinj = ɵɵdefineInjector({ |
nothing calls this directly
no test coverage detected
searching dependent graphs…