miden-debug 0.10.2

An interactive debugger for Miden VM programs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Script-facing debugger facade.
//!
//! This module intentionally exposes a small, stable object model over the
//! debugger rather than binding directly to the TUI/REPL state internals. Python
//! scripting can wrap these types later without coupling Python users to private
//! Rust implementation details.

mod api;
#[cfg(feature = "python")]
pub mod python;

pub use self::api::{
    ScriptBreakpoint, ScriptDebugger, ScriptExecutionContext, ScriptFrame, ScriptSourceLocation,
    ScriptValue,
};
#[cfg(feature = "python")]
pub use self::python::PythonScriptSession;