miden-debug-engine 0.6.1

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

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