( deferBlock: DehydratedDeferBlock | null, hydratedBlocks: string[], registry: DehydratedBlockRegistry, appRef: ApplicationRef, )
| 150 | * dehydrated views and containers |
| 151 | */ |
| 152 | export function cleanupHydratedDeferBlocks( |
| 153 | deferBlock: DehydratedDeferBlock | null, |
| 154 | hydratedBlocks: string[], |
| 155 | registry: DehydratedBlockRegistry, |
| 156 | appRef: ApplicationRef, |
| 157 | ): void { |
| 158 | if (deferBlock !== null) { |
| 159 | registry.cleanup(hydratedBlocks); |
| 160 | cleanupLContainer(deferBlock.lContainer); |
| 161 | cleanupDehydratedViews(appRef); |
| 162 | } |
| 163 | } |
no test coverage detected
searching dependent graphs…