Skip to content

Commit 4e2e354

Browse files
committed
When resolving a rename, fallback to the name higher in the use tree if the path segment is self
1 parent cc3eb85 commit 4e2e354

File tree

2 files changed

+23
-4
lines changed

2 files changed

+23
-4
lines changed

crates/ra_ide/test_data/highlighting.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
.unresolved_reference { color: #FC5555; text-decoration: wavy underline; }
3737
</style>
38-
<pre><code><span class="keyword">use</span> <span class="module">inner</span><span class="operator">::</span><span class="punctuation">{</span><span class="self_keyword">self</span> <span class="keyword">as</span> <span class="unresolved_reference declaration">inner_mod</span><span class="punctuation">}</span><span class="punctuation">;</span>
38+
<pre><code><span class="keyword">use</span> <span class="module">inner</span><span class="operator">::</span><span class="punctuation">{</span><span class="self_keyword">self</span> <span class="keyword">as</span> <span class="module declaration">inner_mod</span><span class="punctuation">}</span><span class="punctuation">;</span>
3939
<span class="keyword">mod</span> <span class="module declaration">inner</span> <span class="punctuation">{</span><span class="punctuation">}</span>
4040

4141
<span class="attribute">#</span><span class="attribute">[</span><span class="function attribute">derive</span><span class="punctuation">(</span><span class="attribute">Clone</span><span class="punctuation">,</span><span class="attribute"> Debug</span><span class="punctuation">)</span><span class="attribute">]</span>

crates/ra_ide_db/src/defs.rs

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use hir::{
1212
use ra_prof::profile;
1313
use ra_syntax::{
1414
ast::{self, AstNode},
15-
match_ast,
15+
match_ast, SyntaxNode,
1616
};
1717

1818
use crate::RootDatabase;
@@ -123,8 +123,27 @@ pub fn classify_name(sema: &Semantics<RootDatabase>, name: &ast::Name) -> Option
123123
let use_tree = it.syntax().parent().and_then(ast::UseTree::cast)?;
124124
let path = use_tree.path()?;
125125
let path_segment = path.segment()?;
126-
let name_ref = path_segment.name_ref()?;
127-
let name_ref_class = classify_name_ref(sema, &name_ref)?;
126+
let name_ref_class = path_segment
127+
.name_ref()
128+
// The rename might be from a `self` token, so fallback to the name higher
129+
// in the use tree.
130+
.or_else(||{
131+
if path_segment.self_token().is_none() {
132+
return None;
133+
}
134+
135+
let use_tree = use_tree
136+
.syntax()
137+
.parent()
138+
.as_ref()
139+
// Skip over UseTreeList
140+
.and_then(SyntaxNode::parent)
141+
.and_then(ast::UseTree::cast)?;
142+
let path = use_tree.path()?;
143+
let path_segment = path.segment()?;
144+
path_segment.name_ref()
145+
})
146+
.and_then(|name_ref| classify_name_ref(sema, &name_ref))?;
128147

129148
Some(NameClass::Definition(name_ref_class.definition()))
130149
},

0 commit comments

Comments
 (0)