()
| 461 | let verifiedNgModule = new WeakMap<NgModuleType<any>, boolean>(); |
| 462 | |
| 463 | export function resetCompiledComponents(): void { |
| 464 | ownerNgModule = new WeakMap<Type<any>, NgModuleType<any>>(); |
| 465 | verifiedNgModule = new WeakMap<NgModuleType<any>, boolean>(); |
| 466 | moduleQueue.length = 0; |
| 467 | GENERATED_COMP_IDS.clear(); |
| 468 | } |
| 469 | |
| 470 | /** |
| 471 | * Computes the combined declarations of explicit declarations, as well as declarations inherited by |
no test coverage detected
searching dependent graphs…