(&mut self, name: &str, item: Definition)
| 896 | } |
| 897 | |
| 898 | fn insert(&mut self, name: &str, item: Definition) -> Result<Atom> { |
| 899 | self.map |
| 900 | .insert(name, self.strings, self.allow_shadowing, item) |
| 901 | } |
| 902 | |
| 903 | fn get(&self, name: &str) -> Option<&Definition> { |
| 904 | self.map.get(name, self.strings) |
no outgoing calls
no test coverage detected