(&self, name: &str)
| 294 | |
| 295 | #[allow(dead_code)] |
| 296 | pub(crate) fn get(&self, name: &str) -> Option<&Function> { |
| 297 | self.functions.get(name) |
| 298 | } |
| 299 | } |
| 300 | |
| 301 | pub type Function = Box<dyn Fn(&mut FunctionContext) -> ResolveResult + Send + Sync>; |
no outgoing calls
no test coverage detected