Looks up the name of the object referred to as `id`.
(&'a self, id: &GlobalId)
| 58 | |
| 59 | /// Looks up the name of the object referred to as `id`. |
| 60 | pub fn get_source_name(&'a self, id: &GlobalId) -> Option<&'a String> { |
| 61 | self.names.get(id) |
| 62 | } |
| 63 | |
| 64 | /// Clears all transient objects from the catalog. |
| 65 | pub fn remove_transient_objects(&mut self) { |
no test coverage detected