Returns the number of unique files touched across the session.
(&self)
| 315 | |
| 316 | /// Returns the number of unique files touched across the session. |
| 317 | pub fn files_touched_count(&self) -> u32 { |
| 318 | self.files_touched.len() as u32 |
| 319 | } |
| 320 | |
| 321 | /// Mark the start of a new turn. |
| 322 | pub fn begin_turn(&mut self) { |
no test coverage detected