Get the total line count.
(&self)
| 671 | |
| 672 | /// Get the total line count. |
| 673 | pub fn total_lines(&self) -> u64 { |
| 674 | self.ranges.iter().map(|r| r.line_count()).sum() |
| 675 | } |
| 676 | |
| 677 | /// Check if the file has any AI-involved content. |
| 678 | pub fn has_ai_content(&self) -> bool { |
nothing calls this directly
no test coverage detected