decy_debugger/step_debugger.rs
1//! Interactive step-through debugger
2//!
3//! Step through the transpilation pipeline interactively
4
5use std::path::Path;
6
7/// Run interactive step-through debugging
8pub fn interactive_step_through(file_path: &Path, _verbose: bool) {
9 println!("═══ Interactive Step-Through Debugger ═══");
10 println!("File: {}", file_path.display());
11 println!();
12 println!("Note: Interactive mode coming in future release.");
13 println!("For now, use:");
14 println!(" decy debug --visualize-ast <file>");
15 println!(" decy debug --visualize-hir <file>");
16 println!(" decy debug --visualize-ownership <file>");
17}