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, is_internal_source_uri, resolve_location_from_filesystem,
14        resolve_source_file_for_location, resolve_source_path,
15    },
16    variables::{
17        DebugVarSnapshot, DebugVarTracker, resolve_variable_value, snapshot_transient_debug_values,
18    },
19};