(&self)
| 15 | |
| 16 | impl NullnessDomain { |
| 17 | pub fn is_empty(&self) -> bool { |
| 18 | self.value_map.is_empty() |
| 19 | } |
| 20 | |
| 21 | pub fn get(&self, path: &Rc<Path>) -> Option<PointerNullness> { |
| 22 | self.value_map.get(path).copied() |
no outgoing calls
no test coverage detected