(line: string)
| 179 | let bEnd = 0; |
| 180 | |
| 181 | const pushCommonLine = (line: string): void => { |
| 182 | const j = lines.length; |
| 183 | lines.push(printCommonLine(line, j === 0 || j === jLast, options)); |
| 184 | aEnd += 1; |
| 185 | bEnd += 1; |
| 186 | }; |
| 187 | |
| 188 | const pushDeleteLine = (line: string): void => { |
| 189 | const j = lines.length; |
no test coverage detected