(&self, func_ref: FuncRef)
| 239 | |
| 240 | impl<'a> State<'a> for InterpreterState<'a> { |
| 241 | fn get_function(&self, func_ref: FuncRef) -> Option<&'a Function> { |
| 242 | self.functions |
| 243 | .get_from_func_ref(func_ref, self.frame_stack.last().unwrap().function()) |
| 244 | } |
| 245 | fn get_current_function(&self) -> &'a Function { |
| 246 | self.current_frame().function() |
| 247 | } |
no test coverage detected