aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide_api/src/completion/complete_pattern.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-04-13 09:00:15 +0100
committerAleksey Kladov <[email protected]>2019-04-13 09:00:15 +0100
commit62d01dd4dfc8feb52c006b84f9d1a1a7142cc060 (patch)
tree82c6e8b1b51f5a0de63e038fd6d872cd39882015 /crates/ra_ide_api/src/completion/complete_pattern.rs
parentf4a94e74bcd6c8f9275a57a775e64314af1878da (diff)
hide resolver
Diffstat (limited to 'crates/ra_ide_api/src/completion/complete_pattern.rs')
-rw-r--r--crates/ra_ide_api/src/completion/complete_pattern.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ide_api/src/completion/complete_pattern.rs b/crates/ra_ide_api/src/completion/complete_pattern.rs
index abbb83518..0ef248687 100644
--- a/crates/ra_ide_api/src/completion/complete_pattern.rs
+++ b/crates/ra_ide_api/src/completion/complete_pattern.rs
@@ -7,7 +7,7 @@ pub(super) fn complete_pattern(acc: &mut Completions, ctx: &CompletionContext) {
7 } 7 }
8 // FIXME: ideally, we should look at the type we are matching against and 8 // FIXME: ideally, we should look at the type we are matching against and
9 // suggest variants + auto-imports 9 // suggest variants + auto-imports
10 let names = ctx.analyzer.resolver().all_names(ctx.db); 10 let names = ctx.analyzer.all_names(ctx.db);
11 for (name, res) in names.into_iter() { 11 for (name, res) in names.into_iter() {
12 let r = res.as_ref(); 12 let r = res.as_ref();
13 let def = match r.take_types().or(r.take_values()) { 13 let def = match r.take_types().or(r.take_values()) {