(line: string)
| 186 | let bEnd = 0 |
| 187 | |
| 188 | const pushCommonLine = (line: string): void => { |
| 189 | const j = lines.length |
| 190 | lines.push(printCommonLine(line, j === 0 || j === jLast, options)) |
| 191 | aEnd += 1 |
| 192 | bEnd += 1 |
| 193 | } |
| 194 | |
| 195 | const pushDeleteLine = (line: string): void => { |
| 196 | const j = lines.length |
no test coverage detected