mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-15 17:28:09 +00:00
Format code
This commit is contained in:
parent
d5fb7a4ba4
commit
d044bc3504
2 changed files with 3 additions and 3 deletions
|
@ -19,7 +19,7 @@ pub struct CompletionConfig {
|
|||
pub insert_use: InsertUseConfig,
|
||||
pub prefer_no_std: bool,
|
||||
pub snippets: Vec<Snippet>,
|
||||
pub limit: Option<usize>
|
||||
pub limit: Option<usize>,
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||
|
|
|
@ -146,7 +146,7 @@ fn integrated_completion_benchmark() {
|
|||
},
|
||||
snippets: Vec::new(),
|
||||
prefer_no_std: false,
|
||||
limit: None
|
||||
limit: None,
|
||||
};
|
||||
let position =
|
||||
FilePosition { file_id, offset: TextSize::try_from(completion_offset).unwrap() };
|
||||
|
@ -185,7 +185,7 @@ fn integrated_completion_benchmark() {
|
|||
},
|
||||
snippets: Vec::new(),
|
||||
prefer_no_std: false,
|
||||
limit: None
|
||||
limit: None,
|
||||
};
|
||||
let position =
|
||||
FilePosition { file_id, offset: TextSize::try_from(completion_offset).unwrap() };
|
||||
|
|
Loading…
Reference in a new issue