@internal
(opts?: ValidatorFn | ValidatorFn[] | AbstractControlOptions | null)
| 1764 | |
| 1765 | /** @internal */ |
| 1766 | _setUpdateStrategy(opts?: ValidatorFn | ValidatorFn[] | AbstractControlOptions | null): void { |
| 1767 | if (isOptionsObj(opts) && opts.updateOn != null) { |
| 1768 | this._updateOn = opts.updateOn!; |
| 1769 | } |
| 1770 | } |
| 1771 | /** |
| 1772 | * Check to see if parent has been marked artificially dirty. |
| 1773 | * |
nothing calls this directly
no test coverage detected
searching dependent graphs…