(
store: &mut Store,
cf: CallFrame,
time_budget: core::time::Duration,
)
| 36 | |
| 37 | #[cfg(feature = "std")] |
| 38 | pub(crate) fn exec_with_time_budget( |
| 39 | store: &mut Store, |
| 40 | cf: CallFrame, |
| 41 | time_budget: core::time::Duration, |
| 42 | ) -> Result<ExecState, Trap> { |
| 43 | executor::Executor::<false>::new(store, cf, 0).run_with_time_budget(time_budget) |
| 44 | } |
| 45 | } |
nothing calls this directly
no test coverage detected