(component: {})
| 24 | * @publicApi |
| 25 | */ |
| 26 | export function applyChanges(component: {}): void { |
| 27 | ngDevMode && assertDefined(component, 'component'); |
| 28 | markViewDirty(getComponentViewByInstance(component), NotificationSource.DebugApplyChanges); |
| 29 | getRootComponents(component).forEach((rootComponent) => detectChanges(rootComponent)); |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * Synchronously perform change detection on a component (and possibly its sub-components). |
nothing calls this directly
no test coverage detected
searching dependent graphs…