mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Get breakpoint reports from debugger
This commit is contained in:
parent
c9cd06e904
commit
507a1f8dd6
4 changed files with 130 additions and 17 deletions
|
@ -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));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue