miden_debug_engine/exec/
mod.rs1mod config;
2#[cfg(feature = "dap")]
3mod dap;
4#[cfg(feature = "dap")]
5mod dap_client;
6#[cfg(feature = "dap")]
7mod dap_types;
8mod diagnostic;
9mod executor;
10mod host;
11mod state;
12mod trace;
13mod trace_event;
14mod trace_monitor;
15
16#[cfg(feature = "dap")]
17pub use self::dap::{DapConfig, DapExecutor};
18#[cfg(feature = "dap")]
19pub use self::dap_client::{DapClient, DapStopReason, SCOPE_MEMORY, SCOPE_STACK};
20#[cfg(feature = "dap")]
21pub use self::dap_types::{DapUiFrame, DapUiState};
22pub use self::{
23 config::ExecutionConfig,
24 diagnostic::DiagnosticExecutor,
25 executor::Executor,
26 host::DebuggerHost,
27 state::DebugExecutor,
28 trace::{ExecutionTrace, TraceHandler},
29 trace_event::{TRACE_PRINT_LN, TraceEvent},
30 trace_monitor::TraceMonitor,
31};