(callbacks)
| 518 | const {outputMap, inputMap, outputPatterns, inputPatterns} = graphs; |
| 519 | |
| 520 | function tail(callbacks) { |
| 521 | return ( |
| 522 | 'This ID was used in the callback(s) for Output(s):\n ' + |
| 523 | callbacks |
| 524 | .map(({outputs}) => outputs.map(combineIdAndProp).join(', ')) |
| 525 | .join('\n ') |
| 526 | ); |
| 527 | } |
| 528 | |
| 529 | function missingId(id, cls, callbacks) { |
| 530 | dispatchError('ID not found in layout', [ |
no outgoing calls
no test coverage detected
searching dependent graphs…