(errors: any, paths: any)
| 218 | } |
| 219 | |
| 220 | function refErr(errors: any, paths: any) { |
| 221 | const err = errors[0]; |
| 222 | if (err.indexOf('logged above') !== -1) { |
| 223 | // Wildcard reference errors mention a list of wildcard specs logged |
| 224 | // TODO: unwrapped list of wildcard ids? |
| 225 | // eslint-disable-next-line no-console |
| 226 | console.error(paths.objs); |
| 227 | } |
| 228 | throw new ReferenceError(err); |
| 229 | } |
| 230 | |
| 231 | const getVals = (input: any) => |
| 232 | Array.isArray(input) ? pluck('value', input) : input.value; |
no test coverage detected
searching dependent graphs…