()
| 476 | let verifiedNgModule = new WeakMap<NgModuleType<any>, boolean>(); |
| 477 | |
| 478 | export function resetCompiledComponents(): void { |
| 479 | ownerNgModule = new WeakMap<Type<any>, NgModuleType<any>>(); |
| 480 | verifiedNgModule = new WeakMap<NgModuleType<any>, boolean>(); |
| 481 | moduleQueue.length = 0; |
| 482 | GENERATED_COMP_IDS.clear(); |
| 483 | } |
| 484 | |
| 485 | /** |
| 486 | * Computes the combined declarations of explicit declarations, as well as declarations inherited by |
no test coverage detected