(arr, key, value)
| 39 | }); |
| 40 | |
| 41 | function push(arr, key, value) { |
| 42 | if (!arr[key]) { |
| 43 | arr[key] = []; |
| 44 | } |
| 45 | arr[key].push(value); |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * There is unfortunately no standard format to report an error, so we have |
no test coverage detected
searching dependent graphs…