(&mut self, path: &Rc<Path>)
| 31 | } |
| 32 | |
| 33 | pub fn forget(&mut self, path: &Rc<Path>) { |
| 34 | self.value_map.remove(path); |
| 35 | } |
| 36 | |
| 37 | pub fn rename(&mut self, old_path: &Rc<Path>, new_path: &Rc<Path>) { |
| 38 | if let Some(value) = self.value_map.remove(old_path) { |
no test coverage detected