Lines Matching refs:DebugRunResult
5 use crate::{DebugRunResult, host::bindings::wasm_type_to_val_type};
93 Result<DebugRunResult>,
102 result: Option<Result<DebugRunResult>>,
253 fn result_to_event(table: &mut ResourceTable, value: DebugRunResult) -> Result<wit::Event> { in result_to_event()
255 DebugRunResult::Finished => wit::Event::Complete, in result_to_event()
256 DebugRunResult::HostcallError => wit::Event::Trap, in result_to_event()
257 DebugRunResult::Trap(_t) => wit::Event::Trap, in result_to_event()
258 DebugRunResult::Breakpoint => wit::Event::Breakpoint, in result_to_event()
259 DebugRunResult::EpochYield => wit::Event::Interrupted, in result_to_event()
260 DebugRunResult::CaughtExceptionThrown(e) => { in result_to_event()
264 DebugRunResult::UncaughtExceptionThrown(e) => { in result_to_event()