aboutsummaryrefslogtreecommitdiff
path: root/crates/ide_completion/src/render.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ide_completion/src/render.rs')
-rw-r--r--crates/ide_completion/src/render.rs79
1 files changed, 51 insertions, 28 deletions
diff --git a/crates/ide_completion/src/render.rs b/crates/ide_completion/src/render.rs
index fcb8115fb..905f0b197 100644
--- a/crates/ide_completion/src/render.rs
+++ b/crates/ide_completion/src/render.rs
@@ -157,9 +157,7 @@ impl<'a> Render<'a> {
157 .set_documentation(field.docs(self.ctx.db())) 157 .set_documentation(field.docs(self.ctx.db()))
158 .set_deprecated(is_deprecated); 158 .set_deprecated(is_deprecated);
159 159
160 if let Some(relevance) = compute_relevance(&self.ctx, &ty, &name.to_string()) { 160 item.set_relevance(compute_relevance(&self.ctx, &ty, &name.to_string()));
161 item.set_relevance(relevance);
162 }
163 161
164 item.build() 162 item.build()
165 } 163 }
@@ -254,9 +252,9 @@ impl<'a> Render<'a> {
254 if let ScopeDef::Local(local) = resolution { 252 if let ScopeDef::Local(local) = resolution {
255 let ty = local.ty(self.ctx.db()); 253 let ty = local.ty(self.ctx.db());
256 254
257 if let Some(relevance) = compute_relevance(&self.ctx, &ty, &local_name) { 255 let mut relevance = compute_relevance(&self.ctx, &ty, &local_name);
258 item.set_relevance(relevance); 256 relevance.is_local = true;
259 } 257 item.set_relevance(relevance);
260 258
261 if let Some((_expected_name, expected_type)) = self.ctx.expected_name_and_type() { 259 if let Some((_expected_name, expected_type)) = self.ctx.expected_name_and_type() {
262 if ty != expected_type { 260 if ty != expected_type {
@@ -328,12 +326,15 @@ impl<'a> Render<'a> {
328 } 326 }
329} 327}
330 328
331fn compute_relevance(ctx: &RenderContext, ty: &Type, name: &str) -> Option<CompletionRelevance> { 329fn compute_relevance(ctx: &RenderContext, ty: &Type, name: &str) -> CompletionRelevance {
332 let (expected_name, expected_type) = ctx.expected_name_and_type()?;
333 let mut res = CompletionRelevance::default(); 330 let mut res = CompletionRelevance::default();
334 res.exact_type_match = ty == &expected_type; 331
335 res.exact_name_match = name == &expected_name; 332 if let Some((expected_name, expected_type)) = ctx.expected_name_and_type() {
336 Some(res) 333 res.exact_type_match = ty == &expected_type;
334 res.exact_name_match = name == &expected_name;
335 }
336
337 res
337} 338}
338 339
339fn relevance_type_match(db: &dyn HirDatabase, ty: &Type, expected_type: &Type) -> bool { 340fn relevance_type_match(db: &dyn HirDatabase, ty: &Type, expected_type: &Type) -> bool {
@@ -343,6 +344,7 @@ fn relevance_type_match(db: &dyn HirDatabase, ty: &Type, expected_type: &Type) -
343#[cfg(test)] 344#[cfg(test)]
344mod tests { 345mod tests {
345 use expect_test::{expect, Expect}; 346 use expect_test::{expect, Expect};
347 use itertools::Itertools;
346 348
347 use crate::{ 349 use crate::{
348 test_utils::{check_edit, do_completion, get_all_items, TEST_CONFIG}, 350 test_utils::{check_edit, do_completion, get_all_items, TEST_CONFIG},
@@ -355,15 +357,17 @@ mod tests {
355 } 357 }
356 358
357 fn check_relevance(ra_fixture: &str, expect: Expect) { 359 fn check_relevance(ra_fixture: &str, expect: Expect) {
358 fn display_relevance(relevance: CompletionRelevance) -> &'static str { 360 fn display_relevance(relevance: CompletionRelevance) -> String {
359 match relevance { 361 let relevance_factors = vec![
360 CompletionRelevance { exact_type_match: true, exact_name_match: true } => { 362 (relevance.exact_type_match, "type"),
361 "[type+name]" 363 (relevance.exact_name_match, "name"),
362 } 364 (relevance.is_local, "local"),
363 CompletionRelevance { exact_type_match: true, exact_name_match: false } => "[type]", 365 ]
364 CompletionRelevance { exact_type_match: false, exact_name_match: true } => "[name]", 366 .into_iter()
365 CompletionRelevance { exact_type_match: false, exact_name_match: false } => "[]", 367 .filter_map(|(cond, desc)| if cond { Some(desc) } else { None })
366 } 368 .join("+");
369
370 format!("[{}]", relevance_factors)
367 } 371 }
368 372
369 let actual = get_all_items(TEST_CONFIG, ra_fixture) 373 let actual = get_all_items(TEST_CONFIG, ra_fixture)
@@ -918,7 +922,7 @@ struct WorldSnapshot { _f: () };
918fn go(world: &WorldSnapshot) { go(w$0) } 922fn go(world: &WorldSnapshot) { go(w$0) }
919"#, 923"#,
920 expect![[r#" 924 expect![[r#"
921 lc world [type+name] 925 lc world [type+name+local]
922 st WorldSnapshot [] 926 st WorldSnapshot []
923 fn go(…) [] 927 fn go(…) []
924 "#]], 928 "#]],
@@ -933,7 +937,7 @@ struct Foo;
933fn f(foo: &Foo) { f(foo, w$0) } 937fn f(foo: &Foo) { f(foo, w$0) }
934"#, 938"#,
935 expect![[r#" 939 expect![[r#"
936 lc foo [] 940 lc foo [local]
937 st Foo [] 941 st Foo []
938 fn f(…) [] 942 fn f(…) []
939 "#]], 943 "#]],
@@ -998,6 +1002,7 @@ fn main() {
998 relevance: CompletionRelevance { 1002 relevance: CompletionRelevance {
999 exact_name_match: true, 1003 exact_name_match: true,
1000 exact_type_match: false, 1004 exact_type_match: false,
1005 is_local: true,
1001 }, 1006 },
1002 ref_match: "&mut ", 1007 ref_match: "&mut ",
1003 }, 1008 },
@@ -1037,9 +1042,9 @@ fn main() {
1037} 1042}
1038 "#, 1043 "#,
1039 expect![[r#" 1044 expect![[r#"
1040 lc m [] 1045 lc m [local]
1041 lc t [] 1046 lc t [local]
1042 lc &t [type] 1047 lc &t [type+local]
1043 st T [] 1048 st T []
1044 st S [] 1049 st S []
1045 fn main() [] 1050 fn main() []
@@ -1091,9 +1096,9 @@ fn main() {
1091} 1096}
1092 "#, 1097 "#,
1093 expect![[r#" 1098 expect![[r#"
1094 lc m [] 1099 lc m [local]
1095 lc t [] 1100 lc t [local]
1096 lc &mut t [type] 1101 lc &mut t [type+local]
1097 tt DerefMut [] 1102 tt DerefMut []
1098 tt Deref [] 1103 tt Deref []
1099 fn foo(…) [] 1104 fn foo(…) []
@@ -1103,4 +1108,22 @@ fn main() {
1103 "#]], 1108 "#]],
1104 ) 1109 )
1105 } 1110 }
1111
1112 #[test]
1113 fn locals() {
1114 check_relevance(
1115 r#"
1116fn foo(bar: u32) {
1117 let baz = 0;
1118
1119 f$0
1120}
1121"#,
1122 expect![[r#"
1123 lc baz [local]
1124 lc bar [local]
1125 fn foo(…) []
1126 "#]],
1127 );
1128 }
1106} 1129}