miden_debug_engine/debug/
mod.rs1mod abi_types;
2mod breakpoint;
3mod memory;
4mod native_ptr;
5mod stacktrace;
6mod variables;
7
8#[cfg(feature = "std")]
9pub use self::stacktrace::{resolve_location_from_filesystem, resolve_source_path};
10pub use self::{
11 abi_types::{TypedProcedure, format_value},
12 breakpoint::{Breakpoint, BreakpointType, OperationMatcher},
13 memory::{FormatType, MemoryMode, ReadMemoryExpr},
14 native_ptr::NativePtr,
15 stacktrace::{
16 CallFrame, CallStack, ControlFlowOp, CurrentFrame, InlineCallFrame, LogicalFrameKind,
17 LogicalStackFrame, OpDetail, ResolvedLocation, StackTrace, StepInfo,
18 inline_frames_for_operation, is_internal_source_uri, resolve_source_file_for_location,
19 },
20 variables::{
21 DebugVarSnapshot, DebugVarTracker, resolve_typed_variable_values, resolve_variable_value,
22 resolve_variable_values, snapshot_transient_debug_values,
23 },
24};