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