(store: &mut Store, cf: CallFrame, call_stack_base: u32)
| 27 | |
| 28 | impl InterpreterRuntime { |
| 29 | pub(crate) fn exec(store: &mut Store, cf: CallFrame, call_stack_base: u32) -> Result<(), Trap> { |
| 30 | executor::Executor::<false>::new(store, cf, call_stack_base).run_to_completion() |
| 31 | } |
| 32 | |
| 33 | pub(crate) fn exec_with_fuel(store: &mut Store, cf: CallFrame, fuel: u32) -> Result<ExecState, Trap> { |
| 34 | executor::Executor::<true>::new(store, cf, 0).run_with_fuel(fuel) |
nothing calls this directly
no test coverage detected