(store: &mut Store, func: &FunctionTyped<(), ()>)
| 29 | } |
| 30 | |
| 31 | fn run_call(store: &mut Store, func: &FunctionTyped<(), ()>) -> Result<()> { |
| 32 | func.call(store, ())?; |
| 33 | Ok(()) |
| 34 | } |
| 35 | |
| 36 | fn run_resume_with_fuel(store: &mut Store, func: &FunctionTyped<(), ()>) -> Result<()> { |
| 37 | let mut execution = func.call_resumable(store, ())?; |
no test coverage detected