Skip to content

Commit

Permalink
expose simple step_into() for SBThread() (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
roccoblues authored Nov 26, 2024
1 parent 5bb8cff commit fb7a448
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/thread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,14 @@ impl SBThread {
}

#[allow(missing_docs)]
pub fn step_into(
pub fn step_into(&self, stop_other_threads: RunMode) {
unsafe {
sys::SBThreadStepInto(self.raw, stop_other_threads);
}
}

#[allow(missing_docs)]
pub fn step_into_until(
&self,
target_name: Option<&str>,
end_line: u32,
Expand Down

0 comments on commit fb7a448

Please sign in to comment.