Returns the number of unique files touched across the session.
(&self)
| 349 | |
| 350 | /// Returns the number of unique files touched across the session. |
| 351 | pub fn files_touched_count(&self) -> u32 { |
| 352 | self.files_touched.len() as u32 |
| 353 | } |
| 354 | |
| 355 | /// Mark the start of a new turn. |
| 356 | pub fn begin_turn(&mut self) { |
no test coverage detected