mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
editor: support setExceptionBreakpoints
This commit is contained in:
parent
bf53aff27d
commit
0e51e5fbaf
5 changed files with 73 additions and 0 deletions
|
@ -399,4 +399,17 @@ impl Client {
|
|||
|
||||
self.request::<requests::Evaluate>(args).await
|
||||
}
|
||||
|
||||
pub async fn set_exception_breakpoints(
|
||||
&mut self,
|
||||
filters: Vec<String>,
|
||||
) -> Result<Option<Vec<Breakpoint>>> {
|
||||
let args = requests::SetExceptionBreakpointsArguments { filters };
|
||||
|
||||
let response = self
|
||||
.request::<requests::SetExceptionBreakpoints>(args)
|
||||
.await;
|
||||
|
||||
Ok(response.ok().map(|r| r.breakpoints).unwrap_or_default())
|
||||
}
|
||||
}
|
||||
|
|
|
@ -515,6 +515,29 @@ pub mod requests {
|
|||
type Result = EvaluateResponse;
|
||||
const COMMAND: &'static str = "evaluate";
|
||||
}
|
||||
|
||||
#[derive(Debug, PartialEq, Clone, Deserialize, Serialize)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
pub struct SetExceptionBreakpointsArguments {
|
||||
pub filters: Vec<String>,
|
||||
// pub filterOptions: Option<Vec<ExceptionFilterOptions>>, // needs capability
|
||||
// pub exceptionOptions: Option<Vec<ExceptionOptions>>, // needs capability
|
||||
}
|
||||
|
||||
#[derive(Debug, PartialEq, Clone, Deserialize, Serialize)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
pub struct SetExceptionBreakpointsResponse {
|
||||
pub breakpoints: Option<Vec<Breakpoint>>,
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
pub enum SetExceptionBreakpoints {}
|
||||
|
||||
impl Request for SetExceptionBreakpoints {
|
||||
type Arguments = SetExceptionBreakpointsArguments;
|
||||
type Result = SetExceptionBreakpointsResponse;
|
||||
const COMMAND: &'static str = "setExceptionBreakpoints";
|
||||
}
|
||||
}
|
||||
|
||||
// Events
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue