(line: string)
| 192 | }; |
| 193 | |
| 194 | const pushInsertLine = (line: string): void => { |
| 195 | const j = lines.length; |
| 196 | lines.push(printInsertLine(line, j === 0 || j === jLast, options)); |
| 197 | bEnd += 1; |
| 198 | }; |
| 199 | |
| 200 | // Second pass: push lines with diff formatting (and patch marks, if needed). |
| 201 | i = 0; |
no test coverage detected