mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
editor: support stepIn, stepOut, next and pause commands
This commit is contained in:
parent
dfc70a12f3
commit
d93cd2a261
4 changed files with 73 additions and 6 deletions
|
@ -30,6 +30,7 @@ pub struct Client {
|
|||
pub breakpoints: HashMap<PathBuf, Vec<SourceBreakpoint>>,
|
||||
// TODO: multiple threads support
|
||||
pub stack_pointer: Option<StackFrame>,
|
||||
pub stopped_thread: Option<usize>,
|
||||
pub is_running: bool,
|
||||
}
|
||||
|
||||
|
@ -52,6 +53,7 @@ impl Client {
|
|||
//
|
||||
breakpoints: HashMap::new(),
|
||||
stack_pointer: None,
|
||||
stopped_thread: None,
|
||||
is_running: false,
|
||||
};
|
||||
|
||||
|
@ -346,9 +348,7 @@ impl Client {
|
|||
}
|
||||
|
||||
pub async fn pause(&mut self, thread_id: usize) -> Result<()> {
|
||||
let args = requests::PauseArguments {
|
||||
thread_id,
|
||||
};
|
||||
let args = requests::PauseArguments { thread_id };
|
||||
|
||||
self.request::<requests::Pause>(args).await
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue