diff options
Diffstat (limited to 'crates/ra_ide_db/src/defs.rs')
-rw-r--r-- | crates/ra_ide_db/src/defs.rs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/crates/ra_ide_db/src/defs.rs b/crates/ra_ide_db/src/defs.rs index bcaabca92..e06b189a0 100644 --- a/crates/ra_ide_db/src/defs.rs +++ b/crates/ra_ide_db/src/defs.rs | |||
@@ -254,6 +254,28 @@ pub fn classify_name_ref( | |||
254 | } | 254 | } |
255 | } | 255 | } |
256 | 256 | ||
257 | if ast::AssocTypeArg::cast(parent.clone()).is_some() { | ||
258 | // `Trait<Assoc = Ty>` | ||
259 | // ^^^^^ | ||
260 | let path = name_ref.syntax().ancestors().find_map(ast::Path::cast)?; | ||
261 | let resolved = sema.resolve_path(&path)?; | ||
262 | if let PathResolution::Def(ModuleDef::Trait(tr)) = resolved { | ||
263 | if let Some(ty) = tr | ||
264 | .items(sema.db) | ||
265 | .iter() | ||
266 | .filter_map(|assoc| match assoc { | ||
267 | hir::AssocItem::TypeAlias(it) => Some(*it), | ||
268 | _ => None, | ||
269 | }) | ||
270 | .find(|alias| alias.name(sema.db).to_string() == **name_ref.text()) | ||
271 | { | ||
272 | return Some(NameRefClass::Definition(Definition::ModuleDef( | ||
273 | ModuleDef::TypeAlias(ty), | ||
274 | ))); | ||
275 | } | ||
276 | } | ||
277 | } | ||
278 | |||
257 | if let Some(macro_call) = parent.ancestors().find_map(ast::MacroCall::cast) { | 279 | if let Some(macro_call) = parent.ancestors().find_map(ast::MacroCall::cast) { |
258 | if let Some(path) = macro_call.path() { | 280 | if let Some(path) = macro_call.path() { |
259 | if path.qualifier().is_none() { | 281 | if path.qualifier().is_none() { |