mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Add stack pointer display when stopped
This commit is contained in:
parent
738e8a4dd3
commit
6458edecfd
4 changed files with 70 additions and 17 deletions
|
@ -36,6 +36,8 @@ pub struct Client {
|
|||
|
||||
//
|
||||
pub breakpoints: HashMap<PathBuf, Vec<SourceBreakpoint>>,
|
||||
// TODO: multiple threads support
|
||||
pub stack_pointer: Option<StackFrame>,
|
||||
}
|
||||
|
||||
impl Client {
|
||||
|
@ -56,6 +58,7 @@ impl Client {
|
|||
awaited_events: Arc::new(Mutex::new(HashMap::default())),
|
||||
//
|
||||
breakpoints: HashMap::new(),
|
||||
stack_pointer: None,
|
||||
};
|
||||
|
||||
tokio::spawn(Self::recv(Arc::clone(&client.awaited_events), server_rx));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue