(i, line)
| 89 | * @param {string} line message |
| 90 | */ |
| 91 | const add = (i, line) => { |
| 92 | if (!internalByEntry.has(i)) internalByEntry.set(i, []); |
| 93 | internalByEntry.get(i).push(line); |
| 94 | }; |
| 95 | if (err) { |
| 96 | // Compiler-level throw can't be attributed to one entry; mark all. |
| 97 | const line = String(err.message).split("\n")[0].slice(0, 160); |
no test coverage detected