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