Skip to main content

miden_debug_engine/debug/
mod.rs

1mod breakpoint;
2mod memory;
3mod native_ptr;
4mod stacktrace;
5mod variables;
6
7pub use self::{
8    breakpoint::{Breakpoint, BreakpointType, OperationMatcher},
9    memory::{FormatType, MemoryMode, ReadMemoryExpr},
10    native_ptr::NativePtr,
11    stacktrace::{
12        CallFrame, CallStack, ControlFlowOp, CurrentFrame, OpDetail, ResolvedLocation, StackTrace,
13        StepInfo,
14    },
15    variables::{
16        DebugVarSnapshot, DebugVarTracker, resolve_variable_value, snapshot_transient_debug_values,
17    },
18};