mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +03:00
dap: Consistently rename type as ty
This commit is contained in:
parent
31b431bfdd
commit
2bd8a9b39d
2 changed files with 4 additions and 4 deletions
|
@ -26,7 +26,7 @@ pub struct ColumnDescriptor {
|
|||
pub label: String,
|
||||
pub format: Option<String>,
|
||||
#[serde(rename = "type")]
|
||||
pub col_type: Option<String>,
|
||||
pub ty: Option<String>,
|
||||
pub width: Option<usize>,
|
||||
}
|
||||
|
||||
|
@ -200,7 +200,7 @@ pub struct Variable {
|
|||
pub name: String,
|
||||
pub value: String,
|
||||
#[serde(rename = "type")]
|
||||
pub data_type: Option<String>,
|
||||
pub ty: Option<String>,
|
||||
pub presentation_hint: Option<VariablePresentationHint>,
|
||||
pub evaluate_name: Option<String>,
|
||||
pub variables_reference: usize,
|
||||
|
@ -502,7 +502,7 @@ pub mod requests {
|
|||
pub struct EvaluateResponse {
|
||||
pub result: String,
|
||||
#[serde(rename = "type")]
|
||||
pub data_type: Option<String>,
|
||||
pub ty: Option<String>,
|
||||
pub presentation_hint: Option<VariablePresentationHint>,
|
||||
pub variables_reference: usize,
|
||||
pub named_variables: Option<usize>,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue