MCPcopy Index your code
hub / github.com/angular/angular / _syncPendingControls

Method _syncPendingControls

packages/forms/src/model/form_group.ts:591–597  ·  view source on GitHub ↗

@internal

()

Source from the content-addressed store, hash-verified

589
590 /** @internal */
591 override _syncPendingControls(): boolean {
592 let subtreeUpdated = this._reduceChildren(false, (updated: boolean, child) => {
593 return child._syncPendingControls() ? true : updated;
594 });
595 if (subtreeUpdated) this.updateValueAndValidity({onlySelf: true});
596 return subtreeUpdated;
597 }
598
599 /** @internal */
600 override _forEachChild(cb: (v: any, k: any) => void): void {

Callers

nothing calls this directly

Calls 3

_reduceChildrenMethod · 0.95
_syncPendingControlsMethod · 0.65

Tested by

no test coverage detected