| 270 | uint32_t hunks_changed{}; |
| 271 | |
| 272 | void writeTextWithoutNewline(WriteBuffer & out) const |
| 273 | { |
| 274 | writeText(change_type, out); |
| 275 | writeChar('\t', out); |
| 276 | writeEscapedString(path, out); |
| 277 | writeChar('\t', out); |
| 278 | writeEscapedString(old_path, out); |
| 279 | writeChar('\t', out); |
| 280 | writeEscapedString(file_extension, out); |
| 281 | writeChar('\t', out); |
| 282 | writeText(lines_added, out); |
| 283 | writeChar('\t', out); |
| 284 | writeText(lines_deleted, out); |
| 285 | writeChar('\t', out); |
| 286 | writeText(hunks_added, out); |
| 287 | writeChar('\t', out); |
| 288 | writeText(hunks_removed, out); |
| 289 | writeChar('\t', out); |
| 290 | writeText(hunks_changed, out); |
| 291 | } |
| 292 | }; |
| 293 | |
| 294 |
nothing calls this directly
no test coverage detected