(isFormGroup: boolean, key: string | number)
| 142 | } |
| 143 | |
| 144 | function describeKey(isFormGroup: boolean, key: string | number): string { |
| 145 | return isFormGroup ? `with name: '${key}'` : `at index: ${key}`; |
| 146 | } |
| 147 | |
| 148 | export function noControlsError(isFormGroup: boolean): string { |
| 149 | return ` |
no outgoing calls
no test coverage detected
searching dependent graphs…