Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide-completion/src/completions/mod_.rs')
-rw-r--r--crates/ide-completion/src/completions/mod_.rs17
1 files changed, 8 insertions, 9 deletions
diff --git a/crates/ide-completion/src/completions/mod_.rs b/crates/ide-completion/src/completions/mod_.rs
index 013747e4d0..3333300045 100644
--- a/crates/ide-completion/src/completions/mod_.rs
+++ b/crates/ide-completion/src/completions/mod_.rs
@@ -26,18 +26,17 @@ pub(crate) fn complete_mod(
let mut current_module = ctx.module;
// For `mod $0`, `ctx.module` is its parent, but for `mod f$0`, it's `mod f` itself, but we're
// interested in its parent.
- if ctx.original_token.kind() == SyntaxKind::IDENT {
- if let Some(module) =
+ if ctx.original_token.kind() == SyntaxKind::IDENT
+ && let Some(module) =
ctx.original_token.parent_ancestors().nth(1).and_then(ast::Module::cast)
- {
- match ctx.sema.to_def(&module) {
- Some(module) if module == current_module => {
- if let Some(parent) = current_module.parent(ctx.db) {
- current_module = parent;
- }
+ {
+ match ctx.sema.to_def(&module) {
+ Some(module) if module == current_module => {
+ if let Some(parent) = current_module.parent(ctx.db) {
+ current_module = parent;
}
- _ => {}
}
+ _ => {}
}
}