editor: support stepIn, stepOut, next and pause commands

This commit is contained in:
Dmitry Sharshakov 2021-08-22 11:16:11 +03:00
parent dfc70a12f3
commit d93cd2a261
No known key found for this signature in database
GPG key ID: 471FD32E15FD8473
4 changed files with 73 additions and 6 deletions

View file

@ -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
}