()
| 27 | let awaitingNewFilePath = false; |
| 28 | |
| 29 | const finalizeCurrentFile = () => { |
| 30 | if (currentFile && hasRenderableHunks(currentFile)) { |
| 31 | files.push(currentFile); |
| 32 | } |
| 33 | currentFile = null; |
| 34 | awaitingNewFilePath = false; |
| 35 | }; |
| 36 | |
| 37 | for (const line of raw.split('\n')) { |
| 38 | if (line.startsWith('--- a/')) { |
no test coverage detected