We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 04789ef + 613863a commit 211171fCopy full SHA for 211171f
crates/ra_ide_api/src/completion/complete_path.rs
@@ -9,7 +9,7 @@ pub(super) fn complete_path(acc: &mut Completions, ctx: &CompletionContext) {
9
Some(path) => path.clone(),
10
_ => return,
11
};
12
- let def = match dbg!(ctx.analyzer.resolve_hir_path(ctx.db, &path)) {
+ let def = match ctx.analyzer.resolve_hir_path(ctx.db, &path) {
13
Some(PathResolution::Def(def)) => def,
14
15
0 commit comments