Read only SEMANTIC sections, skipping everything else. This is the "thin review" pattern: read only the display/analysis layer for code review, diff display, and blame — without loading graph operations or content chunks. All skipped sections are still fed through the blake3 hasher so that [`verify`](Self::verify) works correctly after this call. # Returns A vector of [`ReadSection`] where eve
(&mut self)
| 361 | /// } |
| 362 | /// ``` |
| 363 | pub fn semantic_sections(&mut self) -> FormatResult<Vec<ReadSection>> { |
| 364 | self.sections_of_type(SectionType::Semantic) |
| 365 | } |
| 366 | |
| 367 | /// Read only CONTENT sections, skipping everything else. |
| 368 | /// |