(dir: AbstractControlDirective, message: string)
| 340 | } |
| 341 | |
| 342 | function _throwError(dir: AbstractControlDirective, message: string): void { |
| 343 | const messageEnd = _describeControlLocation(dir); |
| 344 | throw new Error(`${message} ${messageEnd}`); |
| 345 | } |
| 346 | |
| 347 | function _describeControlLocation(dir: AbstractControlDirective): string { |
| 348 | const path = dir.path; |
no test coverage detected
searching dependent graphs…