diff options
Diffstat (limited to 'crates/ra_analysis')
-rw-r--r-- | crates/ra_analysis/src/imp.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crates/ra_analysis/src/imp.rs b/crates/ra_analysis/src/imp.rs index 05c91fb83..517867e86 100644 --- a/crates/ra_analysis/src/imp.rs +++ b/crates/ra_analysis/src/imp.rs | |||
@@ -199,11 +199,11 @@ impl AnalysisImpl { | |||
199 | if let Some(name_ref) = find_node_at_offset::<ast::NameRef>(syntax, offset) { | 199 | if let Some(name_ref) = find_node_at_offset::<ast::NameRef>(syntax, offset) { |
200 | 200 | ||
201 | // First try to resolve the symbol locally | 201 | // First try to resolve the symbol locally |
202 | if let Some(name) = resolve_local_name(&file, offset, name_ref) { | 202 | if let Some((name, range)) = resolve_local_name(&file, offset, name_ref) { |
203 | let vec: Vec<(FileId, FileSymbol)>::new(); | 203 | let mut vec = vec![]; |
204 | vec.push((file_id, FileSymbol { | 204 | vec.push((file_id, FileSymbol { |
205 | name: name.text(), | 205 | name, |
206 | node_range: name.syntax().range(), | 206 | node_range: range, |
207 | kind : NAME | 207 | kind : NAME |
208 | })); | 208 | })); |
209 | 209 | ||