Get the total number of line changes.
(&self)
| 108 | |
| 109 | /// Get the total number of line changes. |
| 110 | pub fn total_line_changes(&self) -> usize { |
| 111 | self.lines_added + self.lines_deleted + self.lines_modified |
| 112 | } |
| 113 | |
| 114 | /// Get the total number of token changes. |
| 115 | pub fn total_token_changes(&self) -> usize { |