mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
dap: Allow setting breakpoints before starting the adapter
This commit is contained in:
parent
289303a30d
commit
b997d2cdeb
6 changed files with 83 additions and 65 deletions
|
@ -27,8 +27,6 @@ pub struct Client {
|
|||
server_tx: UnboundedSender<Request>,
|
||||
request_counter: AtomicU64,
|
||||
pub caps: Option<DebuggerCapabilities>,
|
||||
//
|
||||
pub breakpoints: HashMap<PathBuf, Vec<SourceBreakpoint>>,
|
||||
// thread_id -> frames
|
||||
pub stack_frames: HashMap<usize, Vec<StackFrame>>,
|
||||
pub thread_states: HashMap<usize, String>,
|
||||
|
@ -77,7 +75,6 @@ impl Client {
|
|||
request_counter: AtomicU64::new(0),
|
||||
caps: None,
|
||||
//
|
||||
breakpoints: HashMap::new(),
|
||||
stack_frames: HashMap::new(),
|
||||
thread_states: HashMap::new(),
|
||||
thread_id: None,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue