diff options
Diffstat (limited to 'crates/hir/src/lib.rs')
-rw-r--r-- | crates/hir/src/lib.rs | 153 |
1 files changed, 77 insertions, 76 deletions
diff --git a/crates/hir/src/lib.rs b/crates/hir/src/lib.rs index e34be7e42..30b96d7e2 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 | AliasEq, AliasTy, BoundVar, CallableDefId, CallableSig, Canonical, Cast, DebruijnIndex, | 59 | AliasEq, AliasTy, BoundVar, CallableDefId, CallableSig, Canonical, CanonicalVarKinds, Cast, |
60 | InEnvironment, Interner, ProjectionTy, Scalar, Substitution, Ty, TyDefId, TyKind, | 60 | DebruijnIndex, InEnvironment, Interner, ProjectionTy, QuantifiedWhereClause, Scalar, |
61 | TyVariableKind, WhereClause, | 61 | Substitution, TraitEnvironment, Ty, TyDefId, TyKind, TyVariableKind, WhereClause, |
62 | }; | 62 | }; |
63 | use itertools::Itertools; | 63 | use itertools::Itertools; |
64 | use rustc_hash::FxHashSet; | 64 | use rustc_hash::FxHashSet; |
@@ -213,7 +213,7 @@ impl Crate { | |||
213 | Some(TokenTree::Leaf(Leaf::Literal(Literal{ref text, ..}))) => Some(text), | 213 | Some(TokenTree::Leaf(Leaf::Literal(Literal{ref text, ..}))) => Some(text), |
214 | _ => None | 214 | _ => None |
215 | } | 215 | } |
216 | }).flat_map(|t| t).next(); | 216 | }).flatten().next(); |
217 | 217 | ||
218 | doc_url.map(|s| s.trim_matches('"').trim_end_matches('/').to_owned() + "/") | 218 | doc_url.map(|s| s.trim_matches('"').trim_end_matches('/').to_owned() + "/") |
219 | } | 219 | } |
@@ -851,13 +851,7 @@ impl Function { | |||
851 | .iter() | 851 | .iter() |
852 | .enumerate() | 852 | .enumerate() |
853 | .map(|(idx, type_ref)| { | 853 | .map(|(idx, type_ref)| { |
854 | let ty = Type { | 854 | let ty = Type { krate, env: environment.clone(), ty: ctx.lower_ty(type_ref) }; |
855 | krate, | ||
856 | ty: InEnvironment { | ||
857 | value: ctx.lower_ty(type_ref), | ||
858 | environment: environment.clone(), | ||
859 | }, | ||
860 | }; | ||
861 | Param { func: self, ty, idx } | 855 | Param { func: self, ty, idx } |
862 | }) | 856 | }) |
863 | .collect() | 857 | .collect() |
@@ -1460,7 +1454,7 @@ impl TypeParam { | |||
1460 | pub fn trait_bounds(self, db: &dyn HirDatabase) -> Vec<Trait> { | 1454 | pub fn trait_bounds(self, db: &dyn HirDatabase) -> Vec<Trait> { |
1461 | db.generic_predicates_for_param(self.id) | 1455 | db.generic_predicates_for_param(self.id) |
1462 | .into_iter() | 1456 | .into_iter() |
1463 | .filter_map(|pred| match &pred.value { | 1457 | .filter_map(|pred| match &pred.skip_binders().skip_binders() { |
1464 | hir_ty::WhereClause::Implemented(trait_ref) => { | 1458 | hir_ty::WhereClause::Implemented(trait_ref) => { |
1465 | Some(Trait::from(trait_ref.hir_trait_id())) | 1459 | Some(Trait::from(trait_ref.hir_trait_id())) |
1466 | } | 1460 | } |
@@ -1540,8 +1534,8 @@ impl Impl { | |||
1540 | inherent.all_impls().chain(trait_.all_impls()).map(Self::from).collect() | 1534 | inherent.all_impls().chain(trait_.all_impls()).map(Self::from).collect() |
1541 | } | 1535 | } |
1542 | 1536 | ||
1543 | pub fn all_for_type(db: &dyn HirDatabase, Type { krate, ty }: Type) -> Vec<Impl> { | 1537 | pub fn all_for_type(db: &dyn HirDatabase, Type { krate, ty, .. }: Type) -> Vec<Impl> { |
1544 | let def_crates = match ty.value.def_crates(db, krate) { | 1538 | let def_crates = match ty.def_crates(db, krate) { |
1545 | Some(def_crates) => def_crates, | 1539 | Some(def_crates) => def_crates, |
1546 | None => return Vec::new(), | 1540 | None => return Vec::new(), |
1547 | }; | 1541 | }; |
@@ -1549,14 +1543,14 @@ impl Impl { | |||
1549 | let filter = |impl_def: &Impl| { | 1543 | let filter = |impl_def: &Impl| { |
1550 | let target_ty = impl_def.target_ty(db); | 1544 | let target_ty = impl_def.target_ty(db); |
1551 | let rref = target_ty.remove_ref(); | 1545 | let rref = target_ty.remove_ref(); |
1552 | ty.value.equals_ctor(rref.as_ref().map_or(&target_ty.ty.value, |it| &it.ty.value)) | 1546 | ty.equals_ctor(rref.as_ref().map_or(&target_ty.ty, |it| &it.ty)) |
1553 | }; | 1547 | }; |
1554 | 1548 | ||
1555 | let mut all = Vec::new(); | 1549 | let mut all = Vec::new(); |
1556 | def_crates.iter().for_each(|&id| { | 1550 | def_crates.iter().for_each(|&id| { |
1557 | all.extend(db.inherent_impls_in_crate(id).all_impls().map(Self::from).filter(filter)) | 1551 | all.extend(db.inherent_impls_in_crate(id).all_impls().map(Self::from).filter(filter)) |
1558 | }); | 1552 | }); |
1559 | let fp = TyFingerprint::for_impl(&ty.value); | 1553 | let fp = TyFingerprint::for_impl(&ty); |
1560 | for id in def_crates | 1554 | for id in def_crates |
1561 | .iter() | 1555 | .iter() |
1562 | .flat_map(|&id| Crate { id }.transitive_reverse_dependencies(db)) | 1556 | .flat_map(|&id| Crate { id }.transitive_reverse_dependencies(db)) |
@@ -1643,7 +1637,8 @@ impl Impl { | |||
1643 | #[derive(Clone, PartialEq, Eq, Debug)] | 1637 | #[derive(Clone, PartialEq, Eq, Debug)] |
1644 | pub struct Type { | 1638 | pub struct Type { |
1645 | krate: CrateId, | 1639 | krate: CrateId, |
1646 | ty: InEnvironment<Ty>, | 1640 | env: Arc<TraitEnvironment>, |
1641 | ty: Ty, | ||
1647 | } | 1642 | } |
1648 | 1643 | ||
1649 | impl Type { | 1644 | impl Type { |
@@ -1663,14 +1658,14 @@ impl Type { | |||
1663 | ) -> Type { | 1658 | ) -> Type { |
1664 | let environment = | 1659 | let environment = |
1665 | resolver.generic_def().map_or_else(Default::default, |d| db.trait_environment(d)); | 1660 | resolver.generic_def().map_or_else(Default::default, |d| db.trait_environment(d)); |
1666 | Type { krate, ty: InEnvironment { value: ty, environment } } | 1661 | Type { krate, env: environment, ty } |
1667 | } | 1662 | } |
1668 | 1663 | ||
1669 | fn new(db: &dyn HirDatabase, krate: CrateId, lexical_env: impl HasResolver, ty: Ty) -> Type { | 1664 | fn new(db: &dyn HirDatabase, krate: CrateId, lexical_env: impl HasResolver, ty: Ty) -> Type { |
1670 | let resolver = lexical_env.resolver(db.upcast()); | 1665 | let resolver = lexical_env.resolver(db.upcast()); |
1671 | let environment = | 1666 | let environment = |
1672 | resolver.generic_def().map_or_else(Default::default, |d| db.trait_environment(d)); | 1667 | resolver.generic_def().map_or_else(Default::default, |d| db.trait_environment(d)); |
1673 | Type { krate, ty: InEnvironment { value: ty, environment } } | 1668 | Type { krate, env: environment, ty } |
1674 | } | 1669 | } |
1675 | 1670 | ||
1676 | fn from_def( | 1671 | fn from_def( |
@@ -1684,29 +1679,29 @@ impl Type { | |||
1684 | } | 1679 | } |
1685 | 1680 | ||
1686 | pub fn is_unit(&self) -> bool { | 1681 | pub fn is_unit(&self) -> bool { |
1687 | matches!(self.ty.value.interned(&Interner), TyKind::Tuple(0, ..)) | 1682 | matches!(self.ty.interned(&Interner), TyKind::Tuple(0, ..)) |
1688 | } | 1683 | } |
1689 | pub fn is_bool(&self) -> bool { | 1684 | pub fn is_bool(&self) -> bool { |
1690 | matches!(self.ty.value.interned(&Interner), TyKind::Scalar(Scalar::Bool)) | 1685 | matches!(self.ty.interned(&Interner), TyKind::Scalar(Scalar::Bool)) |
1691 | } | 1686 | } |
1692 | 1687 | ||
1693 | pub fn is_mutable_reference(&self) -> bool { | 1688 | pub fn is_mutable_reference(&self) -> bool { |
1694 | matches!(self.ty.value.interned(&Interner), TyKind::Ref(hir_ty::Mutability::Mut, ..)) | 1689 | matches!(self.ty.interned(&Interner), TyKind::Ref(hir_ty::Mutability::Mut, ..)) |
1695 | } | 1690 | } |
1696 | 1691 | ||
1697 | pub fn is_usize(&self) -> bool { | 1692 | pub fn is_usize(&self) -> bool { |
1698 | matches!(self.ty.value.interned(&Interner), TyKind::Scalar(Scalar::Uint(UintTy::Usize))) | 1693 | matches!(self.ty.interned(&Interner), TyKind::Scalar(Scalar::Uint(UintTy::Usize))) |
1699 | } | 1694 | } |
1700 | 1695 | ||
1701 | pub fn remove_ref(&self) -> Option<Type> { | 1696 | pub fn remove_ref(&self) -> Option<Type> { |
1702 | match &self.ty.value.interned(&Interner) { | 1697 | match &self.ty.interned(&Interner) { |
1703 | TyKind::Ref(.., ty) => Some(self.derived(ty.clone())), | 1698 | TyKind::Ref(.., ty) => Some(self.derived(ty.clone())), |
1704 | _ => None, | 1699 | _ => None, |
1705 | } | 1700 | } |
1706 | } | 1701 | } |
1707 | 1702 | ||
1708 | pub fn is_unknown(&self) -> bool { | 1703 | pub fn is_unknown(&self) -> bool { |
1709 | self.ty.value.is_unknown() | 1704 | self.ty.is_unknown() |
1710 | } | 1705 | } |
1711 | 1706 | ||
1712 | /// Checks that particular type `ty` implements `std::future::Future`. | 1707 | /// Checks that particular type `ty` implements `std::future::Future`. |
@@ -1723,11 +1718,12 @@ impl Type { | |||
1723 | None => return false, | 1718 | None => return false, |
1724 | }; | 1719 | }; |
1725 | 1720 | ||
1726 | let canonical_ty = Canonical { value: self.ty.value.clone(), kinds: Arc::new([]) }; | 1721 | let canonical_ty = |
1722 | Canonical { value: self.ty.clone(), binders: CanonicalVarKinds::empty(&Interner) }; | ||
1727 | method_resolution::implements_trait( | 1723 | method_resolution::implements_trait( |
1728 | &canonical_ty, | 1724 | &canonical_ty, |
1729 | db, | 1725 | db, |
1730 | self.ty.environment.clone(), | 1726 | self.env.clone(), |
1731 | krate, | 1727 | krate, |
1732 | std_future_trait, | 1728 | std_future_trait, |
1733 | ) | 1729 | ) |
@@ -1745,11 +1741,12 @@ impl Type { | |||
1745 | None => return false, | 1741 | None => return false, |
1746 | }; | 1742 | }; |
1747 | 1743 | ||
1748 | let canonical_ty = Canonical { value: self.ty.value.clone(), kinds: Arc::new([]) }; | 1744 | let canonical_ty = |
1745 | Canonical { value: self.ty.clone(), binders: CanonicalVarKinds::empty(&Interner) }; | ||
1749 | method_resolution::implements_trait_unique( | 1746 | method_resolution::implements_trait_unique( |
1750 | &canonical_ty, | 1747 | &canonical_ty, |
1751 | db, | 1748 | db, |
1752 | self.ty.environment.clone(), | 1749 | self.env.clone(), |
1753 | krate, | 1750 | krate, |
1754 | fnonce_trait, | 1751 | fnonce_trait, |
1755 | ) | 1752 | ) |
@@ -1759,17 +1756,14 @@ impl Type { | |||
1759 | let trait_ref = hir_ty::TraitRef { | 1756 | let trait_ref = hir_ty::TraitRef { |
1760 | trait_id: hir_ty::to_chalk_trait_id(trait_.id), | 1757 | trait_id: hir_ty::to_chalk_trait_id(trait_.id), |
1761 | substitution: Substitution::build_for_def(db, trait_.id) | 1758 | substitution: Substitution::build_for_def(db, trait_.id) |
1762 | .push(self.ty.value.clone()) | 1759 | .push(self.ty.clone()) |
1763 | .fill(args.iter().map(|t| t.ty.value.clone())) | 1760 | .fill(args.iter().map(|t| t.ty.clone())) |
1764 | .build(), | 1761 | .build(), |
1765 | }; | 1762 | }; |
1766 | 1763 | ||
1767 | let goal = Canonical { | 1764 | let goal = Canonical { |
1768 | value: hir_ty::InEnvironment::new( | 1765 | value: hir_ty::InEnvironment::new(self.env.env.clone(), trait_ref.cast(&Interner)), |
1769 | self.ty.environment.clone(), | 1766 | binders: CanonicalVarKinds::empty(&Interner), |
1770 | trait_ref.cast(&Interner), | ||
1771 | ), | ||
1772 | kinds: Arc::new([]), | ||
1773 | }; | 1767 | }; |
1774 | 1768 | ||
1775 | db.trait_solve(self.krate, goal).is_some() | 1769 | db.trait_solve(self.krate, goal).is_some() |
@@ -1783,12 +1777,12 @@ impl Type { | |||
1783 | alias: TypeAlias, | 1777 | alias: TypeAlias, |
1784 | ) -> Option<Type> { | 1778 | ) -> Option<Type> { |
1785 | let subst = Substitution::build_for_def(db, trait_.id) | 1779 | let subst = Substitution::build_for_def(db, trait_.id) |
1786 | .push(self.ty.value.clone()) | 1780 | .push(self.ty.clone()) |
1787 | .fill(args.iter().map(|t| t.ty.value.clone())) | 1781 | .fill(args.iter().map(|t| t.ty.clone())) |
1788 | .build(); | 1782 | .build(); |
1789 | let goal = Canonical { | 1783 | let goal = Canonical::new( |
1790 | value: InEnvironment::new( | 1784 | InEnvironment::new( |
1791 | self.ty.environment.clone(), | 1785 | self.env.env.clone(), |
1792 | AliasEq { | 1786 | AliasEq { |
1793 | alias: AliasTy::Projection(ProjectionTy { | 1787 | alias: AliasTy::Projection(ProjectionTy { |
1794 | associated_ty_id: to_assoc_type_id(alias.id), | 1788 | associated_ty_id: to_assoc_type_id(alias.id), |
@@ -1799,8 +1793,8 @@ impl Type { | |||
1799 | } | 1793 | } |
1800 | .cast(&Interner), | 1794 | .cast(&Interner), |
1801 | ), | 1795 | ), |
1802 | kinds: Arc::new([TyVariableKind::General]), | 1796 | [TyVariableKind::General].iter().copied(), |
1803 | }; | 1797 | ); |
1804 | 1798 | ||
1805 | match db.trait_solve(self.krate, goal)? { | 1799 | match db.trait_solve(self.krate, goal)? { |
1806 | Solution::Unique(SolutionVariables(subst)) => { | 1800 | Solution::Unique(SolutionVariables(subst)) => { |
@@ -1820,22 +1814,22 @@ impl Type { | |||
1820 | } | 1814 | } |
1821 | 1815 | ||
1822 | pub fn as_callable(&self, db: &dyn HirDatabase) -> Option<Callable> { | 1816 | pub fn as_callable(&self, db: &dyn HirDatabase) -> Option<Callable> { |
1823 | let def = self.ty.value.callable_def(db); | 1817 | let def = self.ty.callable_def(db); |
1824 | 1818 | ||
1825 | let sig = self.ty.value.callable_sig(db)?; | 1819 | let sig = self.ty.callable_sig(db)?; |
1826 | Some(Callable { ty: self.clone(), sig, def, is_bound_method: false }) | 1820 | Some(Callable { ty: self.clone(), sig, def, is_bound_method: false }) |
1827 | } | 1821 | } |
1828 | 1822 | ||
1829 | pub fn is_closure(&self) -> bool { | 1823 | pub fn is_closure(&self) -> bool { |
1830 | matches!(&self.ty.value.interned(&Interner), TyKind::Closure { .. }) | 1824 | matches!(&self.ty.interned(&Interner), TyKind::Closure { .. }) |
1831 | } | 1825 | } |
1832 | 1826 | ||
1833 | pub fn is_fn(&self) -> bool { | 1827 | pub fn is_fn(&self) -> bool { |
1834 | matches!(&self.ty.value.interned(&Interner), TyKind::FnDef(..) | TyKind::Function { .. }) | 1828 | matches!(&self.ty.interned(&Interner), TyKind::FnDef(..) | TyKind::Function { .. }) |
1835 | } | 1829 | } |
1836 | 1830 | ||
1837 | pub fn is_packed(&self, db: &dyn HirDatabase) -> bool { | 1831 | pub fn is_packed(&self, db: &dyn HirDatabase) -> bool { |
1838 | let adt_id = match self.ty.value.interned(&Interner) { | 1832 | let adt_id = match self.ty.interned(&Interner) { |
1839 | &TyKind::Adt(hir_ty::AdtId(adt_id), ..) => adt_id, | 1833 | &TyKind::Adt(hir_ty::AdtId(adt_id), ..) => adt_id, |
1840 | _ => return false, | 1834 | _ => return false, |
1841 | }; | 1835 | }; |
@@ -1848,11 +1842,11 @@ impl Type { | |||
1848 | } | 1842 | } |
1849 | 1843 | ||
1850 | pub fn is_raw_ptr(&self) -> bool { | 1844 | pub fn is_raw_ptr(&self) -> bool { |
1851 | matches!(&self.ty.value.interned(&Interner), TyKind::Raw(..)) | 1845 | matches!(&self.ty.interned(&Interner), TyKind::Raw(..)) |
1852 | } | 1846 | } |
1853 | 1847 | ||
1854 | pub fn contains_unknown(&self) -> bool { | 1848 | pub fn contains_unknown(&self) -> bool { |
1855 | return go(&self.ty.value); | 1849 | return go(&self.ty); |
1856 | 1850 | ||
1857 | fn go(ty: &Ty) -> bool { | 1851 | fn go(ty: &Ty) -> bool { |
1858 | match ty.interned(&Interner) { | 1852 | match ty.interned(&Interner) { |
@@ -1884,7 +1878,7 @@ impl Type { | |||
1884 | } | 1878 | } |
1885 | 1879 | ||
1886 | pub fn fields(&self, db: &dyn HirDatabase) -> Vec<(Field, Type)> { | 1880 | pub fn fields(&self, db: &dyn HirDatabase) -> Vec<(Field, Type)> { |
1887 | let (variant_id, substs) = match self.ty.value.interned(&Interner) { | 1881 | let (variant_id, substs) = match self.ty.interned(&Interner) { |
1888 | &TyKind::Adt(hir_ty::AdtId(AdtId::StructId(s)), ref substs) => (s.into(), substs), | 1882 | &TyKind::Adt(hir_ty::AdtId(AdtId::StructId(s)), ref substs) => (s.into(), substs), |
1889 | &TyKind::Adt(hir_ty::AdtId(AdtId::UnionId(u)), ref substs) => (u.into(), substs), | 1883 | &TyKind::Adt(hir_ty::AdtId(AdtId::UnionId(u)), ref substs) => (u.into(), substs), |
1890 | _ => return Vec::new(), | 1884 | _ => return Vec::new(), |
@@ -1901,7 +1895,7 @@ impl Type { | |||
1901 | } | 1895 | } |
1902 | 1896 | ||
1903 | pub fn tuple_fields(&self, _db: &dyn HirDatabase) -> Vec<Type> { | 1897 | pub fn tuple_fields(&self, _db: &dyn HirDatabase) -> Vec<Type> { |
1904 | if let TyKind::Tuple(_, substs) = &self.ty.value.interned(&Interner) { | 1898 | if let TyKind::Tuple(_, substs) = &self.ty.interned(&Interner) { |
1905 | substs.iter().map(|ty| self.derived(ty.clone())).collect() | 1899 | substs.iter().map(|ty| self.derived(ty.clone())).collect() |
1906 | } else { | 1900 | } else { |
1907 | Vec::new() | 1901 | Vec::new() |
@@ -1911,9 +1905,10 @@ impl Type { | |||
1911 | pub fn autoderef<'a>(&'a self, db: &'a dyn HirDatabase) -> impl Iterator<Item = Type> + 'a { | 1905 | pub fn autoderef<'a>(&'a self, db: &'a dyn HirDatabase) -> impl Iterator<Item = Type> + 'a { |
1912 | // There should be no inference vars in types passed here | 1906 | // There should be no inference vars in types passed here |
1913 | // FIXME check that? | 1907 | // FIXME check that? |
1914 | let canonical = Canonical { value: self.ty.value.clone(), kinds: Arc::new([]) }; | 1908 | let canonical = |
1915 | let environment = self.ty.environment.clone(); | 1909 | Canonical { value: self.ty.clone(), binders: CanonicalVarKinds::empty(&Interner) }; |
1916 | let ty = InEnvironment { value: canonical, environment }; | 1910 | let environment = self.env.env.clone(); |
1911 | let ty = InEnvironment { goal: canonical, environment }; | ||
1917 | autoderef(db, Some(self.krate), ty) | 1912 | autoderef(db, Some(self.krate), ty) |
1918 | .map(|canonical| canonical.value) | 1913 | .map(|canonical| canonical.value) |
1919 | .map(move |ty| self.derived(ty)) | 1914 | .map(move |ty| self.derived(ty)) |
@@ -1927,10 +1922,10 @@ impl Type { | |||
1927 | krate: Crate, | 1922 | krate: Crate, |
1928 | mut callback: impl FnMut(AssocItem) -> Option<T>, | 1923 | mut callback: impl FnMut(AssocItem) -> Option<T>, |
1929 | ) -> Option<T> { | 1924 | ) -> Option<T> { |
1930 | for krate in self.ty.value.def_crates(db, krate.id)? { | 1925 | for krate in self.ty.def_crates(db, krate.id)? { |
1931 | let impls = db.inherent_impls_in_crate(krate); | 1926 | let impls = db.inherent_impls_in_crate(krate); |
1932 | 1927 | ||
1933 | for impl_def in impls.for_self_ty(&self.ty.value) { | 1928 | for impl_def in impls.for_self_ty(&self.ty) { |
1934 | for &item in db.impl_data(*impl_def).items.iter() { | 1929 | for &item in db.impl_data(*impl_def).items.iter() { |
1935 | if let Some(result) = callback(item.into()) { | 1930 | if let Some(result) = callback(item.into()) { |
1936 | return Some(result); | 1931 | return Some(result); |
@@ -1943,7 +1938,6 @@ impl Type { | |||
1943 | 1938 | ||
1944 | pub fn type_parameters(&self) -> impl Iterator<Item = Type> + '_ { | 1939 | pub fn type_parameters(&self) -> impl Iterator<Item = Type> + '_ { |
1945 | self.ty | 1940 | self.ty |
1946 | .value | ||
1947 | .strip_references() | 1941 | .strip_references() |
1948 | .substs() | 1942 | .substs() |
1949 | .into_iter() | 1943 | .into_iter() |
@@ -1962,9 +1956,10 @@ impl Type { | |||
1962 | // There should be no inference vars in types passed here | 1956 | // There should be no inference vars in types passed here |
1963 | // FIXME check that? | 1957 | // FIXME check that? |
1964 | // FIXME replace Unknown by bound vars here | 1958 | // FIXME replace Unknown by bound vars here |
1965 | let canonical = Canonical { value: self.ty.value.clone(), kinds: Arc::new([]) }; | 1959 | let canonical = |
1960 | Canonical { value: self.ty.clone(), binders: CanonicalVarKinds::empty(&Interner) }; | ||
1966 | 1961 | ||
1967 | let env = self.ty.environment.clone(); | 1962 | let env = self.env.clone(); |
1968 | let krate = krate.id; | 1963 | let krate = krate.id; |
1969 | 1964 | ||
1970 | method_resolution::iterate_method_candidates( | 1965 | method_resolution::iterate_method_candidates( |
@@ -1993,9 +1988,10 @@ impl Type { | |||
1993 | // There should be no inference vars in types passed here | 1988 | // There should be no inference vars in types passed here |
1994 | // FIXME check that? | 1989 | // FIXME check that? |
1995 | // FIXME replace Unknown by bound vars here | 1990 | // FIXME replace Unknown by bound vars here |
1996 | let canonical = Canonical { value: self.ty.value.clone(), kinds: Arc::new([]) }; | 1991 | let canonical = |
1992 | Canonical { value: self.ty.clone(), binders: CanonicalVarKinds::empty(&Interner) }; | ||
1997 | 1993 | ||
1998 | let env = self.ty.environment.clone(); | 1994 | let env = self.env.clone(); |
1999 | let krate = krate.id; | 1995 | let krate = krate.id; |
2000 | 1996 | ||
2001 | method_resolution::iterate_method_candidates( | 1997 | method_resolution::iterate_method_candidates( |
@@ -2011,18 +2007,18 @@ impl Type { | |||
2011 | } | 2007 | } |
2012 | 2008 | ||
2013 | pub fn as_adt(&self) -> Option<Adt> { | 2009 | pub fn as_adt(&self) -> Option<Adt> { |
2014 | let (adt, _subst) = self.ty.value.as_adt()?; | 2010 | let (adt, _subst) = self.ty.as_adt()?; |
2015 | Some(adt.into()) | 2011 | Some(adt.into()) |
2016 | } | 2012 | } |
2017 | 2013 | ||
2018 | pub fn as_dyn_trait(&self) -> Option<Trait> { | 2014 | pub fn as_dyn_trait(&self) -> Option<Trait> { |
2019 | self.ty.value.dyn_trait().map(Into::into) | 2015 | self.ty.dyn_trait().map(Into::into) |
2020 | } | 2016 | } |
2021 | 2017 | ||
2022 | pub fn as_impl_traits(&self, db: &dyn HirDatabase) -> Option<Vec<Trait>> { | 2018 | pub fn as_impl_traits(&self, db: &dyn HirDatabase) -> Option<Vec<Trait>> { |
2023 | self.ty.value.impl_trait_bounds(db).map(|it| { | 2019 | self.ty.impl_trait_bounds(db).map(|it| { |
2024 | it.into_iter() | 2020 | it.into_iter() |
2025 | .filter_map(|pred| match pred { | 2021 | .filter_map(|pred| match pred.skip_binders() { |
2026 | hir_ty::WhereClause::Implemented(trait_ref) => { | 2022 | hir_ty::WhereClause::Implemented(trait_ref) => { |
2027 | Some(Trait::from(trait_ref.hir_trait_id())) | 2023 | Some(Trait::from(trait_ref.hir_trait_id())) |
2028 | } | 2024 | } |
@@ -2033,14 +2029,11 @@ impl Type { | |||
2033 | } | 2029 | } |
2034 | 2030 | ||
2035 | pub fn as_associated_type_parent_trait(&self, db: &dyn HirDatabase) -> Option<Trait> { | 2031 | pub fn as_associated_type_parent_trait(&self, db: &dyn HirDatabase) -> Option<Trait> { |
2036 | self.ty.value.associated_type_parent_trait(db).map(Into::into) | 2032 | self.ty.associated_type_parent_trait(db).map(Into::into) |
2037 | } | 2033 | } |
2038 | 2034 | ||
2039 | fn derived(&self, ty: Ty) -> Type { | 2035 | fn derived(&self, ty: Ty) -> Type { |
2040 | Type { | 2036 | Type { krate: self.krate, env: self.env.clone(), ty } |
2041 | krate: self.krate, | ||
2042 | ty: InEnvironment { value: ty, environment: self.ty.environment.clone() }, | ||
2043 | } | ||
2044 | } | 2037 | } |
2045 | 2038 | ||
2046 | pub fn walk(&self, db: &dyn HirDatabase, mut cb: impl FnMut(Type)) { | 2039 | pub fn walk(&self, db: &dyn HirDatabase, mut cb: impl FnMut(Type)) { |
@@ -2061,14 +2054,17 @@ impl Type { | |||
2061 | fn walk_bounds( | 2054 | fn walk_bounds( |
2062 | db: &dyn HirDatabase, | 2055 | db: &dyn HirDatabase, |
2063 | type_: &Type, | 2056 | type_: &Type, |
2064 | bounds: &[WhereClause], | 2057 | bounds: &[QuantifiedWhereClause], |
2065 | cb: &mut impl FnMut(Type), | 2058 | cb: &mut impl FnMut(Type), |
2066 | ) { | 2059 | ) { |
2067 | for pred in bounds { | 2060 | for pred in bounds { |
2068 | match pred { | 2061 | match pred.skip_binders() { |
2069 | WhereClause::Implemented(trait_ref) => { | 2062 | WhereClause::Implemented(trait_ref) => { |
2070 | cb(type_.clone()); | 2063 | cb(type_.clone()); |
2071 | walk_substs(db, type_, &trait_ref.substitution, cb); | 2064 | // skip the self type. it's likely the type we just got the bounds from |
2065 | for ty in trait_ref.substitution.iter().skip(1) { | ||
2066 | walk_type(db, &type_.derived(ty.clone()), cb); | ||
2067 | } | ||
2072 | } | 2068 | } |
2073 | _ => (), | 2069 | _ => (), |
2074 | } | 2070 | } |
@@ -2076,7 +2072,7 @@ impl Type { | |||
2076 | } | 2072 | } |
2077 | 2073 | ||
2078 | fn walk_type(db: &dyn HirDatabase, type_: &Type, cb: &mut impl FnMut(Type)) { | 2074 | fn walk_type(db: &dyn HirDatabase, type_: &Type, cb: &mut impl FnMut(Type)) { |
2079 | let ty = type_.ty.value.strip_references(); | 2075 | let ty = type_.ty.strip_references(); |
2080 | match ty.interned(&Interner) { | 2076 | match ty.interned(&Interner) { |
2081 | TyKind::Adt(..) => { | 2077 | TyKind::Adt(..) => { |
2082 | cb(type_.derived(ty.clone())); | 2078 | cb(type_.derived(ty.clone())); |
@@ -2104,7 +2100,12 @@ impl Type { | |||
2104 | } | 2100 | } |
2105 | } | 2101 | } |
2106 | TyKind::Dyn(bounds) => { | 2102 | TyKind::Dyn(bounds) => { |
2107 | walk_bounds(db, &type_.derived(ty.clone()), bounds.as_ref(), cb); | 2103 | walk_bounds( |
2104 | db, | ||
2105 | &type_.derived(ty.clone()), | ||
2106 | bounds.bounds.skip_binders().interned(), | ||
2107 | cb, | ||
2108 | ); | ||
2108 | } | 2109 | } |
2109 | 2110 | ||
2110 | TyKind::Ref(_, ty) | TyKind::Raw(_, ty) | TyKind::Array(ty) | TyKind::Slice(ty) => { | 2111 | TyKind::Ref(_, ty) | TyKind::Raw(_, ty) | TyKind::Array(ty) | TyKind::Slice(ty) => { |