(i, line)
| 104 | * @param {string} line message |
| 105 | */ |
| 106 | const add = (i, line) => { |
| 107 | if (!internalByEntry.has(i)) internalByEntry.set(i, []); |
| 108 | internalByEntry.get(i).push(line); |
| 109 | }; |
| 110 | if (err) { |
| 111 | // Compiler-level throw can't be attributed to one entry; mark all. |
| 112 | const line = String(err.message).split("\n")[0].slice(0, 160); |
no test coverage detected