(&mut self, old_path: &Rc<Path>, new_path: &Rc<Path>)
| 203 | } |
| 204 | |
| 205 | pub fn duplicate(&mut self, old_path: &Rc<Path>, new_path: &Rc<Path>) { |
| 206 | if self.contains(old_path) { |
| 207 | self.assign_var(new_path.clone(), old_path.clone()); |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | pub fn get_paths_iter(&self) -> Vec<Rc<Path>> { |
| 212 | self.intervals.keys().cloned().collect() |
nothing calls this directly
no test coverage detected