/// Result of continue execution
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ContinueResult {
/// Stopped at a breakpoint on the specified line (1-indexed)
BreakpointHit(usize),
/// Execution completed without hitting breakpoint
Finished,
}
#[cfg(test)]
#[path = "debugger_tests_ext.rs"]
mod tests_ext;