miden-debug-engine 0.7.0

Core debugger engine for miden-debug
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod breakpoint;
mod memory;
mod native_ptr;
mod stacktrace;
mod variables;

pub use self::{
    breakpoint::{Breakpoint, BreakpointType},
    memory::{FormatType, MemoryMode, ReadMemoryExpr},
    native_ptr::NativePtr,
    stacktrace::{
        CallFrame, CallStack, ControlFlowOp, CurrentFrame, OpDetail, ResolvedLocation, StackTrace,
        StepInfo,
    },
    variables::{DebugVarSnapshot, DebugVarTracker, resolve_variable_value},
};