Get all token changes across all line changes.
(&self)
| 224 | |
| 225 | /// Get all token changes across all line changes. |
| 226 | pub fn all_token_changes(&self) -> impl Iterator<Item = &TokenChange<'a>> { |
| 227 | self.changes.iter().flat_map(|c| c.token_changes()) |
| 228 | } |
| 229 | } |
| 230 | |
| 231 | impl<'a> fmt::Display for SemanticDiff<'a> { |