diff options
Diffstat (limited to 'crates')
-rw-r--r-- | crates/hir/src/lib.rs | 4 | ||||
-rw-r--r-- | crates/hir_ty/src/chalk_ext.rs | 36 | ||||
-rw-r--r-- | crates/ide/src/references.rs | 64 | ||||
-rw-r--r-- | crates/ide/src/references/rename.rs | 17 | ||||
-rw-r--r-- | crates/ide_assists/src/handlers/convert_tuple_struct_to_named_struct.rs | 2 | ||||
-rw-r--r-- | crates/ide_db/src/search.rs | 177 |
6 files changed, 222 insertions, 78 deletions
diff --git a/crates/hir/src/lib.rs b/crates/hir/src/lib.rs index ac23e385e..c9ef4b420 100644 --- a/crates/hir/src/lib.rs +++ b/crates/hir/src/lib.rs | |||
@@ -2071,6 +2071,10 @@ impl Type { | |||
2071 | Some(adt.into()) | 2071 | Some(adt.into()) |
2072 | } | 2072 | } |
2073 | 2073 | ||
2074 | pub fn as_builtin(&self) -> Option<BuiltinType> { | ||
2075 | self.ty.as_builtin().map(|inner| BuiltinType { inner }) | ||
2076 | } | ||
2077 | |||
2074 | pub fn as_dyn_trait(&self) -> Option<Trait> { | 2078 | pub fn as_dyn_trait(&self) -> Option<Trait> { |
2075 | self.ty.dyn_trait().map(Into::into) | 2079 | self.ty.dyn_trait().map(Into::into) |
2076 | } | 2080 | } |
diff --git a/crates/hir_ty/src/chalk_ext.rs b/crates/hir_ty/src/chalk_ext.rs index 8c4542956..5232a7d80 100644 --- a/crates/hir_ty/src/chalk_ext.rs +++ b/crates/hir_ty/src/chalk_ext.rs | |||
@@ -1,8 +1,10 @@ | |||
1 | //! Various extensions traits for Chalk types. | 1 | //! Various extensions traits for Chalk types. |
2 | 2 | ||
3 | use chalk_ir::Mutability; | 3 | use chalk_ir::{FloatTy, IntTy, Mutability, Scalar, UintTy}; |
4 | use hir_def::{ | 4 | use hir_def::{ |
5 | type_ref::Rawness, AssocContainerId, FunctionId, GenericDefId, HasModule, Lookup, TraitId, | 5 | builtin_type::{BuiltinFloat, BuiltinInt, BuiltinType, BuiltinUint}, |
6 | type_ref::Rawness, | ||
7 | AssocContainerId, FunctionId, GenericDefId, HasModule, Lookup, TraitId, | ||
6 | }; | 8 | }; |
7 | 9 | ||
8 | use crate::{ | 10 | use crate::{ |
@@ -18,6 +20,7 @@ pub trait TyExt { | |||
18 | fn is_unknown(&self) -> bool; | 20 | fn is_unknown(&self) -> bool; |
19 | 21 | ||
20 | fn as_adt(&self) -> Option<(hir_def::AdtId, &Substitution)>; | 22 | fn as_adt(&self) -> Option<(hir_def::AdtId, &Substitution)>; |
23 | fn as_builtin(&self) -> Option<BuiltinType>; | ||
21 | fn as_tuple(&self) -> Option<&Substitution>; | 24 | fn as_tuple(&self) -> Option<&Substitution>; |
22 | fn as_fn_def(&self, db: &dyn HirDatabase) -> Option<FunctionId>; | 25 | fn as_fn_def(&self, db: &dyn HirDatabase) -> Option<FunctionId>; |
23 | fn as_reference(&self) -> Option<(&Ty, Lifetime, Mutability)>; | 26 | fn as_reference(&self) -> Option<(&Ty, Lifetime, Mutability)>; |
@@ -59,6 +62,35 @@ impl TyExt for Ty { | |||
59 | } | 62 | } |
60 | } | 63 | } |
61 | 64 | ||
65 | fn as_builtin(&self) -> Option<BuiltinType> { | ||
66 | match self.kind(&Interner) { | ||
67 | TyKind::Str => Some(BuiltinType::Str), | ||
68 | TyKind::Scalar(Scalar::Bool) => Some(BuiltinType::Bool), | ||
69 | TyKind::Scalar(Scalar::Char) => Some(BuiltinType::Char), | ||
70 | TyKind::Scalar(Scalar::Float(fty)) => Some(BuiltinType::Float(match fty { | ||
71 | FloatTy::F64 => BuiltinFloat::F64, | ||
72 | FloatTy::F32 => BuiltinFloat::F32, | ||
73 | })), | ||
74 | TyKind::Scalar(Scalar::Int(ity)) => Some(BuiltinType::Int(match ity { | ||
75 | IntTy::Isize => BuiltinInt::Isize, | ||
76 | IntTy::I8 => BuiltinInt::I8, | ||
77 | IntTy::I16 => BuiltinInt::I16, | ||
78 | IntTy::I32 => BuiltinInt::I32, | ||
79 | IntTy::I64 => BuiltinInt::I64, | ||
80 | IntTy::I128 => BuiltinInt::I128, | ||
81 | })), | ||
82 | TyKind::Scalar(Scalar::Uint(ity)) => Some(BuiltinType::Uint(match ity { | ||
83 | UintTy::Usize => BuiltinUint::Usize, | ||
84 | UintTy::U8 => BuiltinUint::U8, | ||
85 | UintTy::U16 => BuiltinUint::U16, | ||
86 | UintTy::U32 => BuiltinUint::U32, | ||
87 | UintTy::U64 => BuiltinUint::U64, | ||
88 | UintTy::U128 => BuiltinUint::U128, | ||
89 | })), | ||
90 | _ => None, | ||
91 | } | ||
92 | } | ||
93 | |||
62 | fn as_tuple(&self) -> Option<&Substitution> { | 94 | fn as_tuple(&self) -> Option<&Substitution> { |
63 | match self.kind(&Interner) { | 95 | match self.kind(&Interner) { |
64 | TyKind::Tuple(_, substs) => Some(substs), | 96 | TyKind::Tuple(_, substs) => Some(substs), |
diff --git a/crates/ide/src/references.rs b/crates/ide/src/references.rs index 11ca7ec6b..ae492a264 100644 --- a/crates/ide/src/references.rs +++ b/crates/ide/src/references.rs | |||
@@ -65,7 +65,7 @@ pub(crate) fn find_all_refs( | |||
65 | (find_def(&sema, &syntax, position)?, false) | 65 | (find_def(&sema, &syntax, position)?, false) |
66 | }; | 66 | }; |
67 | 67 | ||
68 | let mut usages = def.usages(sema).set_scope(search_scope).all(); | 68 | let mut usages = def.usages(sema).set_scope(search_scope).include_self_refs().all(); |
69 | if is_literal_search { | 69 | if is_literal_search { |
70 | // filter for constructor-literals | 70 | // filter for constructor-literals |
71 | let refs = usages.references.values_mut(); | 71 | let refs = usages.references.values_mut(); |
@@ -1163,22 +1163,76 @@ fn foo<const FOO$0: usize>() -> usize { | |||
1163 | } | 1163 | } |
1164 | 1164 | ||
1165 | #[test] | 1165 | #[test] |
1166 | fn test_find_self_ty_in_trait_def() { | 1166 | fn test_trait() { |
1167 | check( | 1167 | check( |
1168 | r#" | 1168 | r#" |
1169 | trait Foo { | 1169 | trait Foo$0 where Self: {} |
1170 | fn f() -> Self$0; | 1170 | |
1171 | impl Foo for () {} | ||
1172 | "#, | ||
1173 | expect![[r#" | ||
1174 | Foo Trait FileId(0) 0..24 6..9 | ||
1175 | |||
1176 | FileId(0) 31..34 | ||
1177 | "#]], | ||
1178 | ); | ||
1179 | } | ||
1180 | |||
1181 | #[test] | ||
1182 | fn test_trait_self() { | ||
1183 | check( | ||
1184 | r#" | ||
1185 | trait Foo where Self$0 { | ||
1186 | fn f() -> Self; | ||
1171 | } | 1187 | } |
1188 | |||
1189 | impl Foo for () {} | ||
1172 | "#, | 1190 | "#, |
1173 | expect![[r#" | 1191 | expect![[r#" |
1174 | Self TypeParam FileId(0) 6..9 6..9 | 1192 | Self TypeParam FileId(0) 6..9 6..9 |
1175 | 1193 | ||
1176 | FileId(0) 26..30 | 1194 | FileId(0) 16..20 |
1195 | FileId(0) 37..41 | ||
1177 | "#]], | 1196 | "#]], |
1178 | ); | 1197 | ); |
1179 | } | 1198 | } |
1180 | 1199 | ||
1181 | #[test] | 1200 | #[test] |
1201 | fn test_self_ty() { | ||
1202 | check( | ||
1203 | r#" | ||
1204 | struct $0Foo; | ||
1205 | |||
1206 | impl Foo where Self: { | ||
1207 | fn f() -> Self; | ||
1208 | } | ||
1209 | "#, | ||
1210 | expect![[r#" | ||
1211 | Foo Struct FileId(0) 0..11 7..10 | ||
1212 | |||
1213 | FileId(0) 18..21 | ||
1214 | FileId(0) 28..32 | ||
1215 | FileId(0) 50..54 | ||
1216 | "#]], | ||
1217 | ); | ||
1218 | check( | ||
1219 | r#" | ||
1220 | struct Foo; | ||
1221 | |||
1222 | impl Foo where Self: { | ||
1223 | fn f() -> Self$0; | ||
1224 | } | ||
1225 | "#, | ||
1226 | expect![[r#" | ||
1227 | impl Impl FileId(0) 13..57 18..21 | ||
1228 | |||
1229 | FileId(0) 18..21 | ||
1230 | FileId(0) 28..32 | ||
1231 | FileId(0) 50..54 | ||
1232 | "#]], | ||
1233 | ); | ||
1234 | } | ||
1235 | #[test] | ||
1182 | fn test_self_variant_with_payload() { | 1236 | fn test_self_variant_with_payload() { |
1183 | check( | 1237 | check( |
1184 | r#" | 1238 | r#" |
diff --git a/crates/ide/src/references/rename.rs b/crates/ide/src/references/rename.rs index 175e7a31d..2bf953305 100644 --- a/crates/ide/src/references/rename.rs +++ b/crates/ide/src/references/rename.rs | |||
@@ -1888,4 +1888,21 @@ impl Foo { | |||
1888 | "error: Cannot rename `Self`", | 1888 | "error: Cannot rename `Self`", |
1889 | ); | 1889 | ); |
1890 | } | 1890 | } |
1891 | |||
1892 | #[test] | ||
1893 | fn test_rename_ignores_self_ty() { | ||
1894 | check( | ||
1895 | "Fo0", | ||
1896 | r#" | ||
1897 | struct $0Foo; | ||
1898 | |||
1899 | impl Foo where Self: {} | ||
1900 | "#, | ||
1901 | r#" | ||
1902 | struct Fo0; | ||
1903 | |||
1904 | impl Fo0 where Self: {} | ||
1905 | "#, | ||
1906 | ); | ||
1907 | } | ||
1891 | } | 1908 | } |
diff --git a/crates/ide_assists/src/handlers/convert_tuple_struct_to_named_struct.rs b/crates/ide_assists/src/handlers/convert_tuple_struct_to_named_struct.rs index b5b5ada5e..70949ca35 100644 --- a/crates/ide_assists/src/handlers/convert_tuple_struct_to_named_struct.rs +++ b/crates/ide_assists/src/handlers/convert_tuple_struct_to_named_struct.rs | |||
@@ -107,7 +107,7 @@ fn edit_struct_references( | |||
107 | names: &[ast::Name], | 107 | names: &[ast::Name], |
108 | ) { | 108 | ) { |
109 | let strukt_def = Definition::ModuleDef(hir::ModuleDef::Adt(hir::Adt::Struct(strukt))); | 109 | let strukt_def = Definition::ModuleDef(hir::ModuleDef::Adt(hir::Adt::Struct(strukt))); |
110 | let usages = strukt_def.usages(&ctx.sema).include_self_kw_refs(true).all(); | 110 | let usages = strukt_def.usages(&ctx.sema).include_self_refs().all(); |
111 | 111 | ||
112 | let edit_node = |edit: &mut AssistBuilder, node: SyntaxNode| -> Option<()> { | 112 | let edit_node = |edit: &mut AssistBuilder, node: SyntaxNode| -> Option<()> { |
113 | match_ast! { | 113 | match_ast! { |
diff --git a/crates/ide_db/src/search.rs b/crates/ide_db/src/search.rs index 8f899ea56..67840602b 100644 --- a/crates/ide_db/src/search.rs +++ b/crates/ide_db/src/search.rs | |||
@@ -233,6 +233,13 @@ impl Definition { | |||
233 | }; | 233 | }; |
234 | } | 234 | } |
235 | 235 | ||
236 | if let Definition::SelfType(impl_) = self { | ||
237 | return match impl_.source(db).map(|src| src.value.syntax().text_range()) { | ||
238 | Some(range) => SearchScope::file_range(FileRange { file_id, range }), | ||
239 | None => SearchScope::single_file(file_id), | ||
240 | }; | ||
241 | } | ||
242 | |||
236 | if let Definition::GenericParam(hir::GenericParam::LifetimeParam(param)) = self { | 243 | if let Definition::GenericParam(hir::GenericParam::LifetimeParam(param)) = self { |
237 | let range = match param.parent(db) { | 244 | let range = match param.parent(db) { |
238 | hir::GenericDef::Function(it) => { | 245 | hir::GenericDef::Function(it) => { |
@@ -297,7 +304,7 @@ impl Definition { | |||
297 | } | 304 | } |
298 | 305 | ||
299 | pub fn usages<'a>(&'a self, sema: &'a Semantics<RootDatabase>) -> FindUsages<'a> { | 306 | pub fn usages<'a>(&'a self, sema: &'a Semantics<RootDatabase>) -> FindUsages<'a> { |
300 | FindUsages { def: self, sema, scope: None, include_self_kw_refs: false } | 307 | FindUsages { def: self, sema, scope: None, include_self_kw_refs: None } |
301 | } | 308 | } |
302 | } | 309 | } |
303 | 310 | ||
@@ -305,12 +312,13 @@ pub struct FindUsages<'a> { | |||
305 | def: &'a Definition, | 312 | def: &'a Definition, |
306 | sema: &'a Semantics<'a, RootDatabase>, | 313 | sema: &'a Semantics<'a, RootDatabase>, |
307 | scope: Option<SearchScope>, | 314 | scope: Option<SearchScope>, |
308 | include_self_kw_refs: bool, | 315 | include_self_kw_refs: Option<hir::Type>, |
309 | } | 316 | } |
310 | 317 | ||
311 | impl<'a> FindUsages<'a> { | 318 | impl<'a> FindUsages<'a> { |
312 | pub fn include_self_kw_refs(mut self, include: bool) -> FindUsages<'a> { | 319 | /// Enable searching for `Self` when the definition is a type. |
313 | self.include_self_kw_refs = include; | 320 | pub fn include_self_refs(mut self) -> FindUsages<'a> { |
321 | self.include_self_kw_refs = def_to_ty(self.sema, self.def); | ||
314 | self | 322 | self |
315 | } | 323 | } |
316 | 324 | ||
@@ -354,13 +362,18 @@ impl<'a> FindUsages<'a> { | |||
354 | } | 362 | } |
355 | }; | 363 | }; |
356 | 364 | ||
357 | let name = match self.def.name(sema.db) { | 365 | let name = self.def.name(sema.db).or_else(|| { |
358 | Some(it) => it.to_string(), | 366 | self.include_self_kw_refs.as_ref().and_then(|ty| { |
367 | ty.as_adt() | ||
368 | .map(|adt| adt.name(self.sema.db)) | ||
369 | .or_else(|| ty.as_builtin().map(|builtin| builtin.name())) | ||
370 | }) | ||
371 | }); | ||
372 | let name = match name { | ||
373 | Some(name) => name.to_string(), | ||
359 | None => return, | 374 | None => return, |
360 | }; | 375 | }; |
361 | 376 | let name = name.as_str(); | |
362 | let pat = name.as_str(); | ||
363 | let search_for_self = self.include_self_kw_refs; | ||
364 | 377 | ||
365 | for (file_id, search_range) in search_scope { | 378 | for (file_id, search_range) in search_scope { |
366 | let text = sema.db.file_text(file_id); | 379 | let text = sema.db.file_text(file_id); |
@@ -369,51 +382,63 @@ impl<'a> FindUsages<'a> { | |||
369 | 382 | ||
370 | let tree = Lazy::new(|| sema.parse(file_id).syntax().clone()); | 383 | let tree = Lazy::new(|| sema.parse(file_id).syntax().clone()); |
371 | 384 | ||
372 | let mut handle_match = |idx: usize| -> bool { | 385 | for (idx, _) in text.match_indices(name) { |
373 | let offset: TextSize = idx.try_into().unwrap(); | 386 | let offset: TextSize = idx.try_into().unwrap(); |
374 | if !search_range.contains_inclusive(offset) { | 387 | if !search_range.contains_inclusive(offset) { |
375 | return false; | 388 | continue; |
376 | } | 389 | } |
377 | 390 | ||
378 | if let Some(name) = sema.find_node_at_offset_with_descend(&tree, offset) { | 391 | if let Some(name) = sema.find_node_at_offset_with_descend(&tree, offset) { |
379 | match name { | 392 | if match name { |
380 | ast::NameLike::NameRef(name_ref) => { | 393 | ast::NameLike::NameRef(name_ref) => self.found_name_ref(&name_ref, sink), |
381 | if self.found_name_ref(&name_ref, sink) { | 394 | ast::NameLike::Name(name) => self.found_name(&name, sink), |
382 | return true; | 395 | ast::NameLike::Lifetime(lifetime) => self.found_lifetime(&lifetime, sink), |
383 | } | 396 | } { |
384 | } | 397 | return; |
385 | ast::NameLike::Name(name) => { | ||
386 | if self.found_name(&name, sink) { | ||
387 | return true; | ||
388 | } | ||
389 | } | ||
390 | ast::NameLike::Lifetime(lifetime) => { | ||
391 | if self.found_lifetime(&lifetime, sink) { | ||
392 | return true; | ||
393 | } | ||
394 | } | ||
395 | } | 398 | } |
396 | } | 399 | } |
397 | |||
398 | return false; | ||
399 | }; | ||
400 | |||
401 | for (idx, _) in text.match_indices(pat) { | ||
402 | if handle_match(idx) { | ||
403 | return; | ||
404 | } | ||
405 | } | 400 | } |
406 | 401 | if let Some(self_ty) = &self.include_self_kw_refs { | |
407 | if search_for_self { | ||
408 | for (idx, _) in text.match_indices("Self") { | 402 | for (idx, _) in text.match_indices("Self") { |
409 | if handle_match(idx) { | 403 | let offset: TextSize = idx.try_into().unwrap(); |
410 | return; | 404 | if !search_range.contains_inclusive(offset) { |
405 | continue; | ||
406 | } | ||
407 | |||
408 | if let Some(ast::NameLike::NameRef(name_ref)) = | ||
409 | sema.find_node_at_offset_with_descend(&tree, offset) | ||
410 | { | ||
411 | if self.found_self_ty_name_ref(&self_ty, &name_ref, sink) { | ||
412 | return; | ||
413 | } | ||
411 | } | 414 | } |
412 | } | 415 | } |
413 | } | 416 | } |
414 | } | 417 | } |
415 | } | 418 | } |
416 | 419 | ||
420 | fn found_self_ty_name_ref( | ||
421 | &self, | ||
422 | self_ty: &hir::Type, | ||
423 | name_ref: &ast::NameRef, | ||
424 | sink: &mut dyn FnMut(FileId, FileReference) -> bool, | ||
425 | ) -> bool { | ||
426 | match NameRefClass::classify(self.sema, &name_ref) { | ||
427 | Some(NameRefClass::Definition(Definition::SelfType(impl_))) | ||
428 | if impl_.self_ty(self.sema.db) == *self_ty => | ||
429 | { | ||
430 | let FileRange { file_id, range } = self.sema.original_range(name_ref.syntax()); | ||
431 | let reference = FileReference { | ||
432 | range, | ||
433 | name: ast::NameLike::NameRef(name_ref.clone()), | ||
434 | access: None, | ||
435 | }; | ||
436 | sink(file_id, reference) | ||
437 | } | ||
438 | _ => false, | ||
439 | } | ||
440 | } | ||
441 | |||
417 | fn found_lifetime( | 442 | fn found_lifetime( |
418 | &self, | 443 | &self, |
419 | lifetime: &ast::Lifetime, | 444 | lifetime: &ast::Lifetime, |
@@ -429,7 +454,7 @@ impl<'a> FindUsages<'a> { | |||
429 | }; | 454 | }; |
430 | sink(file_id, reference) | 455 | sink(file_id, reference) |
431 | } | 456 | } |
432 | _ => false, // not a usage | 457 | _ => false, |
433 | } | 458 | } |
434 | } | 459 | } |
435 | 460 | ||
@@ -448,42 +473,35 @@ impl<'a> FindUsages<'a> { | |||
448 | }; | 473 | }; |
449 | sink(file_id, reference) | 474 | sink(file_id, reference) |
450 | } | 475 | } |
451 | Some(NameRefClass::Definition(Definition::SelfType(impl_))) => { | 476 | Some(NameRefClass::Definition(def)) if self.include_self_kw_refs.is_some() => { |
452 | let ty = impl_.self_ty(self.sema.db); | 477 | if self.include_self_kw_refs == def_to_ty(self.sema, &def) { |
453 | 478 | let FileRange { file_id, range } = self.sema.original_range(name_ref.syntax()); | |
454 | if let Some(adt) = ty.as_adt() { | 479 | let reference = FileReference { |
455 | if &Definition::ModuleDef(ModuleDef::Adt(adt)) == self.def { | 480 | range, |
456 | let FileRange { file_id, range } = | 481 | name: ast::NameLike::NameRef(name_ref.clone()), |
457 | self.sema.original_range(name_ref.syntax()); | 482 | access: reference_access(&def, &name_ref), |
458 | let reference = FileReference { | 483 | }; |
459 | range, | 484 | sink(file_id, reference) |
460 | name: ast::NameLike::NameRef(name_ref.clone()), | 485 | } else { |
461 | access: None, | 486 | false |
462 | }; | ||
463 | return sink(file_id, reference); | ||
464 | } | ||
465 | } | 487 | } |
466 | |||
467 | false | ||
468 | } | 488 | } |
469 | Some(NameRefClass::FieldShorthand { local_ref: local, field_ref: field }) => { | 489 | Some(NameRefClass::FieldShorthand { local_ref: local, field_ref: field }) => { |
470 | let FileRange { file_id, range } = self.sema.original_range(name_ref.syntax()); | 490 | let FileRange { file_id, range } = self.sema.original_range(name_ref.syntax()); |
471 | let reference = match self.def { | 491 | let access = match self.def { |
472 | Definition::Field(_) if &field == self.def => FileReference { | 492 | Definition::Field(_) if &field == self.def => { |
473 | range, | 493 | reference_access(&field, &name_ref) |
474 | name: ast::NameLike::NameRef(name_ref.clone()), | 494 | } |
475 | access: reference_access(&field, &name_ref), | 495 | Definition::Local(l) if &local == l => { |
476 | }, | 496 | reference_access(&Definition::Local(local), &name_ref) |
477 | Definition::Local(l) if &local == l => FileReference { | 497 | } |
478 | range, | 498 | _ => return false, |
479 | name: ast::NameLike::NameRef(name_ref.clone()), | ||
480 | access: reference_access(&Definition::Local(local), &name_ref), | ||
481 | }, | ||
482 | _ => return false, // not a usage | ||
483 | }; | 499 | }; |
500 | let reference = | ||
501 | FileReference { range, name: ast::NameLike::NameRef(name_ref.clone()), access }; | ||
484 | sink(file_id, reference) | 502 | sink(file_id, reference) |
485 | } | 503 | } |
486 | _ => false, // not a usage | 504 | _ => false, |
487 | } | 505 | } |
488 | } | 506 | } |
489 | 507 | ||
@@ -513,11 +531,30 @@ impl<'a> FindUsages<'a> { | |||
513 | FileReference { range, name: ast::NameLike::Name(name.clone()), access: None }; | 531 | FileReference { range, name: ast::NameLike::Name(name.clone()), access: None }; |
514 | sink(file_id, reference) | 532 | sink(file_id, reference) |
515 | } | 533 | } |
516 | _ => false, // not a usage | 534 | _ => false, |
517 | } | 535 | } |
518 | } | 536 | } |
519 | } | 537 | } |
520 | 538 | ||
539 | fn def_to_ty(sema: &Semantics<RootDatabase>, def: &Definition) -> Option<hir::Type> { | ||
540 | match def { | ||
541 | Definition::ModuleDef(def) => match def { | ||
542 | ModuleDef::Adt(adt) => Some(adt.ty(sema.db)), | ||
543 | ModuleDef::TypeAlias(it) => Some(it.ty(sema.db)), | ||
544 | ModuleDef::BuiltinType(it) => { | ||
545 | let graph = sema.db.crate_graph(); | ||
546 | let krate = graph.iter().next()?; | ||
547 | let root_file = graph[krate].root_file_id; | ||
548 | let module = sema.to_module_def(root_file)?; | ||
549 | Some(it.ty(sema.db, module)) | ||
550 | } | ||
551 | _ => None, | ||
552 | }, | ||
553 | Definition::SelfType(it) => Some(it.self_ty(sema.db)), | ||
554 | _ => None, | ||
555 | } | ||
556 | } | ||
557 | |||
521 | fn reference_access(def: &Definition, name_ref: &ast::NameRef) -> Option<ReferenceAccess> { | 558 | fn reference_access(def: &Definition, name_ref: &ast::NameRef) -> Option<ReferenceAccess> { |
522 | // Only Locals and Fields have accesses for now. | 559 | // Only Locals and Fields have accesses for now. |
523 | if !matches!(def, Definition::Local(_) | Definition::Field(_)) { | 560 | if !matches!(def, Definition::Local(_) | Definition::Field(_)) { |