(dir: AbstractControlDirective)
| 352 | } |
| 353 | |
| 354 | function _throwMissingValueAccessorError(dir: AbstractControlDirective) { |
| 355 | const loc = _describeControlLocation(dir); |
| 356 | throw new RuntimeError( |
| 357 | RuntimeErrorCode.NG_MISSING_VALUE_ACCESSOR, |
| 358 | `No value accessor for form control ${loc}.`, |
| 359 | ); |
| 360 | } |
| 361 | |
| 362 | function _throwInvalidValueAccessorError(dir: AbstractControlDirective) { |
| 363 | const loc = _describeControlLocation(dir); |
no test coverage detected
searching dependent graphs…