Format
This commit is contained in:
parent
774ab6f8b6
commit
0e779381a8
2 changed files with 2 additions and 4 deletions
|
@ -225,9 +225,7 @@ impl Client {
|
|||
}
|
||||
|
||||
pub fn capabilities(&self) -> &DebuggerCapabilities {
|
||||
self.caps
|
||||
.as_ref()
|
||||
.expect("debugger not yet initialized!")
|
||||
self.caps.as_ref().expect("debugger not yet initialized!")
|
||||
}
|
||||
|
||||
pub async fn initialize(&mut self, adapter_id: String) -> Result<()> {
|
||||
|
|
|
@ -7,7 +7,7 @@ use std::{collections::HashMap, path::PathBuf};
|
|||
pub struct DebugTemplate {
|
||||
pub name: String,
|
||||
pub request: String,
|
||||
pub args: HashMap<String, Value>
|
||||
pub args: HashMap<String, Value>,
|
||||
}
|
||||
|
||||
#[derive(Debug, PartialEq, Clone, Deserialize, Serialize)]
|
||||
|
|
Loading…
Add table
Reference in a new issue