(&mut self, path: &Rc<Path>)
| 118 | } |
| 119 | |
| 120 | pub fn remove(&mut self, path: &Rc<Path>) { |
| 121 | self.numerical_domain.forget(path); |
| 122 | self.nullness_domain.forget(path); |
| 123 | } |
| 124 | |
| 125 | pub fn forget_paths_rooted_by(&mut self, root: &Rc<Path>) { |
| 126 | let to_remove: Vec<Rc<Path>> = self |
no test coverage detected