()
| 124 | validateControlPresenceOnChange: boolean = true, |
| 125 | ): void { |
| 126 | const noop = () => { |
| 127 | if (validateControlPresenceOnChange && (typeof ngDevMode === 'undefined' || ngDevMode)) { |
| 128 | _noControlError(dir); |
| 129 | } |
| 130 | }; |
| 131 | |
| 132 | // The `valueAccessor` field is typically defined on FromControl and FormControlName directive |
| 133 | // instances and there is a logic in `selectValueAccessor` function that throws if it's not the |
nothing calls this directly
no test coverage detected
searching dependent graphs…