(&'a self, function: &'a Function)
| 52 | function.owner_class.as_deref().unwrap_or(&self.name), |
| 53 | &function.name, |
| 54 | &function.signature, |
| 55 | ); |
| 56 | self.functions.entry(key).or_insert(function); |
| 57 | } |
| 58 | |
| 59 | pub fn owner_class_for_function<'a>(&'a self, function: &'a Function) -> &'a str { |
no outgoing calls
no test coverage detected