diff options
author | Aleksey Kladov <[email protected]> | 2020-07-04 08:08:51 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-07-04 08:08:51 +0100 |
commit | 65768feaff5fad91c5bded8b606de29ed7ef4b12 (patch) | |
tree | 8e220f8b88ebd8171afd716527ea7aed1a7ca1f3 /crates | |
parent | 6518f18f80d5bf0b5dc66320af8b0924918c97d3 (diff) |
Unify naming
Diffstat (limited to 'crates')
-rw-r--r-- | crates/ra_ide/src/completion/test_utils.rs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/crates/ra_ide/src/completion/test_utils.rs b/crates/ra_ide/src/completion/test_utils.rs index 145d36c98..329acdc8b 100644 --- a/crates/ra_ide/src/completion/test_utils.rs +++ b/crates/ra_ide/src/completion/test_utils.rs | |||
@@ -13,15 +13,15 @@ use crate::{ | |||
13 | }; | 13 | }; |
14 | 14 | ||
15 | pub(crate) fn do_completion(code: &str, kind: CompletionKind) -> Vec<CompletionItem> { | 15 | pub(crate) fn do_completion(code: &str, kind: CompletionKind) -> Vec<CompletionItem> { |
16 | do_completion_with_options(code, kind, &CompletionConfig::default()) | 16 | do_completion_with_config(code, kind, &CompletionConfig::default()) |
17 | } | 17 | } |
18 | 18 | ||
19 | pub(crate) fn do_completion_with_options( | 19 | pub(crate) fn do_completion_with_config( |
20 | code: &str, | 20 | code: &str, |
21 | kind: CompletionKind, | 21 | kind: CompletionKind, |
22 | options: &CompletionConfig, | 22 | config: &CompletionConfig, |
23 | ) -> Vec<CompletionItem> { | 23 | ) -> Vec<CompletionItem> { |
24 | let mut kind_completions: Vec<CompletionItem> = get_all_completion_items(code, options) | 24 | let mut kind_completions: Vec<CompletionItem> = get_all_completion_items(code, config) |
25 | .into_iter() | 25 | .into_iter() |
26 | .filter(|c| c.completion_kind == kind) | 26 | .filter(|c| c.completion_kind == kind) |
27 | .collect(); | 27 | .collect(); |
@@ -30,15 +30,15 @@ pub(crate) fn do_completion_with_options( | |||
30 | } | 30 | } |
31 | 31 | ||
32 | pub(crate) fn completion_list(code: &str, kind: CompletionKind) -> String { | 32 | pub(crate) fn completion_list(code: &str, kind: CompletionKind) -> String { |
33 | completion_list_with_options(code, kind, &CompletionConfig::default()) | 33 | completion_list_with_config(code, kind, &CompletionConfig::default()) |
34 | } | 34 | } |
35 | 35 | ||
36 | pub(crate) fn completion_list_with_options( | 36 | pub(crate) fn completion_list_with_config( |
37 | code: &str, | 37 | code: &str, |
38 | kind: CompletionKind, | 38 | kind: CompletionKind, |
39 | options: &CompletionConfig, | 39 | config: &CompletionConfig, |
40 | ) -> String { | 40 | ) -> String { |
41 | let mut kind_completions: Vec<CompletionItem> = get_all_completion_items(code, options) | 41 | let mut kind_completions: Vec<CompletionItem> = get_all_completion_items(code, config) |
42 | .into_iter() | 42 | .into_iter() |
43 | .filter(|c| c.completion_kind == kind) | 43 | .filter(|c| c.completion_kind == kind) |
44 | .collect(); | 44 | .collect(); |