Get breakpoint reports from debugger

This commit is contained in:
Dmitry Sharshakov 2021-09-06 08:47:54 +03:00
parent c9cd06e904
commit 507a1f8dd6
4 changed files with 130 additions and 17 deletions

View file

@ -33,6 +33,7 @@ pub struct Client {
pub thread_id: Option<isize>,
/// Currently active frame for the current thread.
pub active_frame: Option<usize>,
pub breakpoints: Vec<Breakpoint>,
}
impl Client {
@ -80,6 +81,7 @@ impl Client {
thread_states: HashMap::new(),
thread_id: None,
active_frame: None,
breakpoints: vec![],
};
tokio::spawn(Self::recv(server_rx, client_rx));