Get the number of lines added.
(&self)
| 290 | |
| 291 | /// Get the number of lines added. |
| 292 | pub fn additions(&self) -> usize { |
| 293 | self.diff_result.insertions() |
| 294 | } |
| 295 | |
| 296 | /// Get the number of lines removed. |
| 297 | pub fn deletions(&self) -> usize { |
nothing calls this directly
no test coverage detected