(ds diffStats)
| 381 | } |
| 382 | |
| 383 | func (s diffStats) Append(ds diffStats) diffStats { |
| 384 | assert(s.Name == ds.Name) |
| 385 | s.NumIgnored += ds.NumIgnored |
| 386 | s.NumIdentical += ds.NumIdentical |
| 387 | s.NumRemoved += ds.NumRemoved |
| 388 | s.NumInserted += ds.NumInserted |
| 389 | s.NumModified += ds.NumModified |
| 390 | return s |
| 391 | } |
| 392 | |
| 393 | // String prints a humanly-readable summary of coalesced records. |
| 394 | // |
no test coverage detected