diff options
Diffstat (limited to 'crates/hir/src/lib.rs')
-rw-r--r-- | crates/hir/src/lib.rs | 42 |
1 files changed, 23 insertions, 19 deletions
diff --git a/crates/hir/src/lib.rs b/crates/hir/src/lib.rs index b41a36a78..5ebd0a3b8 100644 --- a/crates/hir/src/lib.rs +++ b/crates/hir/src/lib.rs | |||
@@ -56,9 +56,9 @@ use hir_ty::{ | |||
56 | primitive::UintTy, | 56 | primitive::UintTy, |
57 | to_assoc_type_id, | 57 | to_assoc_type_id, |
58 | traits::{FnTrait, Solution, SolutionVariables}, | 58 | traits::{FnTrait, Solution, SolutionVariables}, |
59 | AliasTy, BoundVar, CallableDefId, CallableSig, Canonical, DebruijnIndex, GenericPredicate, | 59 | AliasEq, AliasTy, BoundVar, CallableDefId, CallableSig, Canonical, DebruijnIndex, |
60 | InEnvironment, Interner, Obligation, ProjectionPredicate, ProjectionTy, Scalar, Substitution, | 60 | GenericPredicate, InEnvironment, Interner, Obligation, ProjectionTy, Scalar, Substitution, Ty, |
61 | Ty, TyDefId, TyKind, TyVariableKind, | 61 | TyDefId, TyKind, TyVariableKind, |
62 | }; | 62 | }; |
63 | use itertools::Itertools; | 63 | use itertools::Itertools; |
64 | use rustc_hash::FxHashSet; | 64 | use rustc_hash::FxHashSet; |
@@ -1144,17 +1144,21 @@ impl MacroDef { | |||
1144 | 1144 | ||
1145 | /// XXX: this parses the file | 1145 | /// XXX: this parses the file |
1146 | pub fn name(self, db: &dyn HirDatabase) -> Option<Name> { | 1146 | pub fn name(self, db: &dyn HirDatabase) -> Option<Name> { |
1147 | self.source(db)?.value.name().map(|it| it.as_name()) | 1147 | match self.source(db)?.value { |
1148 | Either::Left(it) => it.name().map(|it| it.as_name()), | ||
1149 | Either::Right(it) => it.name().map(|it| it.as_name()), | ||
1150 | } | ||
1148 | } | 1151 | } |
1149 | 1152 | ||
1150 | /// Indicate it is a proc-macro | 1153 | /// Indicate it is a proc-macro |
1151 | pub fn is_proc_macro(&self) -> bool { | 1154 | pub fn is_proc_macro(&self) -> bool { |
1152 | matches!(self.id.kind, MacroDefKind::ProcMacro(_)) | 1155 | matches!(self.id.kind, MacroDefKind::ProcMacro(..)) |
1153 | } | 1156 | } |
1154 | 1157 | ||
1155 | /// Indicate it is a derive macro | 1158 | /// Indicate it is a derive macro |
1156 | pub fn is_derive_macro(&self) -> bool { | 1159 | pub fn is_derive_macro(&self) -> bool { |
1157 | matches!(self.id.kind, MacroDefKind::ProcMacro(_) | MacroDefKind::BuiltInDerive(_)) | 1160 | // FIXME: wrong for `ProcMacro` |
1161 | matches!(self.id.kind, MacroDefKind::ProcMacro(..) | MacroDefKind::BuiltInDerive(..)) | ||
1158 | } | 1162 | } |
1159 | } | 1163 | } |
1160 | 1164 | ||
@@ -1458,7 +1462,7 @@ impl TypeParam { | |||
1458 | .into_iter() | 1462 | .into_iter() |
1459 | .filter_map(|pred| match &pred.value { | 1463 | .filter_map(|pred| match &pred.value { |
1460 | hir_ty::GenericPredicate::Implemented(trait_ref) => { | 1464 | hir_ty::GenericPredicate::Implemented(trait_ref) => { |
1461 | Some(Trait::from(trait_ref.trait_)) | 1465 | Some(Trait::from(trait_ref.hir_trait_id())) |
1462 | } | 1466 | } |
1463 | _ => None, | 1467 | _ => None, |
1464 | }) | 1468 | }) |
@@ -1753,8 +1757,8 @@ impl Type { | |||
1753 | 1757 | ||
1754 | pub fn impls_trait(&self, db: &dyn HirDatabase, trait_: Trait, args: &[Type]) -> bool { | 1758 | pub fn impls_trait(&self, db: &dyn HirDatabase, trait_: Trait, args: &[Type]) -> bool { |
1755 | let trait_ref = hir_ty::TraitRef { | 1759 | let trait_ref = hir_ty::TraitRef { |
1756 | trait_: trait_.id, | 1760 | trait_id: hir_ty::to_chalk_trait_id(trait_.id), |
1757 | substs: Substitution::build_for_def(db, trait_.id) | 1761 | substitution: Substitution::build_for_def(db, trait_.id) |
1758 | .push(self.ty.value.clone()) | 1762 | .push(self.ty.value.clone()) |
1759 | .fill(args.iter().map(|t| t.ty.value.clone())) | 1763 | .fill(args.iter().map(|t| t.ty.value.clone())) |
1760 | .build(), | 1764 | .build(), |
@@ -1782,17 +1786,17 @@ impl Type { | |||
1782 | .push(self.ty.value.clone()) | 1786 | .push(self.ty.value.clone()) |
1783 | .fill(args.iter().map(|t| t.ty.value.clone())) | 1787 | .fill(args.iter().map(|t| t.ty.value.clone())) |
1784 | .build(); | 1788 | .build(); |
1785 | let predicate = ProjectionPredicate { | ||
1786 | projection_ty: ProjectionTy { | ||
1787 | associated_ty_id: to_assoc_type_id(alias.id), | ||
1788 | substitution: subst, | ||
1789 | }, | ||
1790 | ty: TyKind::BoundVar(BoundVar::new(DebruijnIndex::INNERMOST, 0)).intern(&Interner), | ||
1791 | }; | ||
1792 | let goal = Canonical { | 1789 | let goal = Canonical { |
1793 | value: InEnvironment::new( | 1790 | value: InEnvironment::new( |
1794 | self.ty.environment.clone(), | 1791 | self.ty.environment.clone(), |
1795 | Obligation::Projection(predicate), | 1792 | Obligation::AliasEq(AliasEq { |
1793 | alias: AliasTy::Projection(ProjectionTy { | ||
1794 | associated_ty_id: to_assoc_type_id(alias.id), | ||
1795 | substitution: subst, | ||
1796 | }), | ||
1797 | ty: TyKind::BoundVar(BoundVar::new(DebruijnIndex::INNERMOST, 0)) | ||
1798 | .intern(&Interner), | ||
1799 | }), | ||
1796 | ), | 1800 | ), |
1797 | kinds: Arc::new([TyVariableKind::General]), | 1801 | kinds: Arc::new([TyVariableKind::General]), |
1798 | }; | 1802 | }; |
@@ -2019,7 +2023,7 @@ impl Type { | |||
2019 | it.into_iter() | 2023 | it.into_iter() |
2020 | .filter_map(|pred| match pred { | 2024 | .filter_map(|pred| match pred { |
2021 | hir_ty::GenericPredicate::Implemented(trait_ref) => { | 2025 | hir_ty::GenericPredicate::Implemented(trait_ref) => { |
2022 | Some(Trait::from(trait_ref.trait_)) | 2026 | Some(Trait::from(trait_ref.hir_trait_id())) |
2023 | } | 2027 | } |
2024 | _ => None, | 2028 | _ => None, |
2025 | }) | 2029 | }) |
@@ -2063,7 +2067,7 @@ impl Type { | |||
2063 | match pred { | 2067 | match pred { |
2064 | GenericPredicate::Implemented(trait_ref) => { | 2068 | GenericPredicate::Implemented(trait_ref) => { |
2065 | cb(type_.clone()); | 2069 | cb(type_.clone()); |
2066 | walk_substs(db, type_, &trait_ref.substs, cb); | 2070 | walk_substs(db, type_, &trait_ref.substitution, cb); |
2067 | } | 2071 | } |
2068 | _ => (), | 2072 | _ => (), |
2069 | } | 2073 | } |