2019-11-27 08:46:02 -06:00
|
|
|
//! The type system. We currently use this to infer types for completion, hover
|
|
|
|
//! information and various assists.
|
2021-04-03 10:42:13 -05:00
|
|
|
|
2020-04-06 09:58:16 -05:00
|
|
|
#[allow(unused)]
|
|
|
|
macro_rules! eprintln {
|
|
|
|
($($tt:tt)*) => { stdx::eprintln!($($tt)*) };
|
|
|
|
}
|
|
|
|
|
2019-11-27 08:46:02 -06:00
|
|
|
mod autoderef;
|
2019-11-26 05:35:23 -06:00
|
|
|
pub mod primitive;
|
2019-11-27 08:46:02 -06:00
|
|
|
pub mod traits;
|
|
|
|
pub mod method_resolution;
|
|
|
|
mod op;
|
|
|
|
mod lower;
|
2020-03-06 17:11:52 -06:00
|
|
|
pub(crate) mod infer;
|
2019-11-27 08:46:02 -06:00
|
|
|
pub(crate) mod utils;
|
2021-03-20 05:23:59 -05:00
|
|
|
mod chalk_cast;
|
2021-04-04 05:55:47 -05:00
|
|
|
mod chalk_ext;
|
|
|
|
mod builder;
|
2021-04-04 13:22:00 -05:00
|
|
|
mod walk;
|
2020-07-13 08:34:46 -05:00
|
|
|
|
|
|
|
pub mod display;
|
2019-11-27 08:46:02 -06:00
|
|
|
pub mod db;
|
|
|
|
pub mod diagnostics;
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests;
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test_db;
|
|
|
|
|
2021-04-04 13:22:00 -05:00
|
|
|
use std::sync::Arc;
|
2021-04-04 05:55:47 -05:00
|
|
|
|
2021-02-28 12:13:37 -06:00
|
|
|
use base_db::salsa;
|
2021-04-03 10:49:29 -05:00
|
|
|
use chalk_ir::{
|
2021-04-07 14:26:24 -05:00
|
|
|
fold::{Fold, Shift},
|
2021-04-03 10:49:29 -05:00
|
|
|
interner::HasInterner,
|
|
|
|
UintTy,
|
|
|
|
};
|
2019-11-27 08:46:02 -06:00
|
|
|
use hir_def::{
|
2021-04-06 05:36:12 -05:00
|
|
|
expr::ExprId, type_ref::Rawness, ConstParamId, LifetimeParamId, TraitId, TypeAliasId,
|
|
|
|
TypeParamId,
|
2019-11-27 08:46:02 -06:00
|
|
|
};
|
|
|
|
|
2021-04-04 13:22:00 -05:00
|
|
|
use crate::{db::HirDatabase, display::HirDisplay, utils::generics};
|
2019-11-27 08:46:02 -06:00
|
|
|
|
|
|
|
pub use autoderef::autoderef;
|
2021-04-04 05:55:47 -05:00
|
|
|
pub use builder::TyBuilder;
|
2021-04-07 13:40:01 -05:00
|
|
|
pub use chalk_ext::*;
|
2021-04-06 14:09:52 -05:00
|
|
|
pub use infer::{could_unify, InferenceResult};
|
2020-01-24 08:22:00 -06:00
|
|
|
pub use lower::{
|
2021-01-28 12:06:33 -06:00
|
|
|
associated_type_shorthand_candidates, callable_item_sig, CallableDefId, ImplTraitLoweringMode,
|
|
|
|
TyDefId, TyLoweringContext, ValueTyDefId,
|
2020-01-24 08:22:00 -06:00
|
|
|
};
|
2021-04-05 14:14:49 -05:00
|
|
|
pub use traits::{chalk::Interner, TraitEnvironment};
|
2021-04-04 13:22:00 -05:00
|
|
|
pub use walk::TypeWalk;
|
2019-11-27 08:46:02 -06:00
|
|
|
|
2021-03-20 05:23:59 -05:00
|
|
|
pub use chalk_ir::{
|
|
|
|
cast::Cast, AdtId, BoundVar, DebruijnIndex, Mutability, Safety, Scalar, TyVariableKind,
|
|
|
|
};
|
2021-03-01 14:57:39 -06:00
|
|
|
|
2021-03-13 10:23:19 -06:00
|
|
|
pub type ForeignDefId = chalk_ir::ForeignDefId<Interner>;
|
2021-03-13 10:36:07 -06:00
|
|
|
pub type AssocTypeId = chalk_ir::AssocTypeId<Interner>;
|
2021-03-13 12:27:09 -06:00
|
|
|
pub type FnDefId = chalk_ir::FnDefId<Interner>;
|
|
|
|
pub type ClosureId = chalk_ir::ClosureId<Interner>;
|
2021-03-13 13:05:47 -06:00
|
|
|
pub type OpaqueTyId = chalk_ir::OpaqueTyId<Interner>;
|
2021-03-13 12:47:34 -06:00
|
|
|
pub type PlaceholderIndex = chalk_ir::PlaceholderIndex;
|
2021-03-13 10:23:19 -06:00
|
|
|
|
2021-04-05 10:45:18 -05:00
|
|
|
pub type VariableKind = chalk_ir::VariableKind<Interner>;
|
|
|
|
pub type VariableKinds = chalk_ir::VariableKinds<Interner>;
|
2021-03-21 14:05:38 -05:00
|
|
|
pub type CanonicalVarKinds = chalk_ir::CanonicalVarKinds<Interner>;
|
2021-04-03 10:40:56 -05:00
|
|
|
pub type Binders<T> = chalk_ir::Binders<T>;
|
|
|
|
pub type Substitution = chalk_ir::Substitution<Interner>;
|
|
|
|
pub type GenericArg = chalk_ir::GenericArg<Interner>;
|
|
|
|
pub type GenericArgData = chalk_ir::GenericArgData<Interner>;
|
|
|
|
|
|
|
|
pub type Ty = chalk_ir::Ty<Interner>;
|
|
|
|
pub type TyKind = chalk_ir::TyKind<Interner>;
|
|
|
|
pub type DynTy = chalk_ir::DynTy<Interner>;
|
|
|
|
pub type FnPointer = chalk_ir::FnPointer<Interner>;
|
|
|
|
// pub type FnSubst = chalk_ir::FnSubst<Interner>;
|
|
|
|
pub use chalk_ir::FnSubst;
|
|
|
|
pub type ProjectionTy = chalk_ir::ProjectionTy<Interner>;
|
|
|
|
pub type AliasTy = chalk_ir::AliasTy<Interner>;
|
|
|
|
pub type OpaqueTy = chalk_ir::OpaqueTy<Interner>;
|
|
|
|
pub type InferenceVar = chalk_ir::InferenceVar;
|
2021-03-21 14:05:38 -05:00
|
|
|
|
2021-04-05 13:46:15 -05:00
|
|
|
pub type Lifetime = chalk_ir::Lifetime<Interner>;
|
|
|
|
pub type LifetimeData = chalk_ir::LifetimeData<Interner>;
|
|
|
|
pub type LifetimeOutlives = chalk_ir::LifetimeOutlives<Interner>;
|
|
|
|
|
2021-04-06 04:45:41 -05:00
|
|
|
pub type Const = chalk_ir::Const<Interner>;
|
|
|
|
pub type ConstData = chalk_ir::ConstData<Interner>;
|
|
|
|
pub type ConstValue = chalk_ir::ConstValue<Interner>;
|
|
|
|
pub type ConcreteConst = chalk_ir::ConcreteConst<Interner>;
|
|
|
|
|
2021-03-18 15:53:19 -05:00
|
|
|
pub type ChalkTraitId = chalk_ir::TraitId<Interner>;
|
|
|
|
|
2021-03-14 10:30:02 -05:00
|
|
|
pub type FnSig = chalk_ir::FnSig<Interner>;
|
2021-02-28 15:12:07 -06:00
|
|
|
|
2021-04-03 10:40:56 -05:00
|
|
|
pub type InEnvironment<T> = chalk_ir::InEnvironment<T>;
|
|
|
|
pub type DomainGoal = chalk_ir::DomainGoal<Interner>;
|
|
|
|
pub type AliasEq = chalk_ir::AliasEq<Interner>;
|
|
|
|
pub type Solution = chalk_solve::Solution<Interner>;
|
|
|
|
pub type ConstrainedSubst = chalk_ir::ConstrainedSubst<Interner>;
|
|
|
|
pub type Guidance = chalk_solve::Guidance<Interner>;
|
|
|
|
pub type WhereClause = chalk_ir::WhereClause<Interner>;
|
|
|
|
|
2021-04-05 14:56:40 -05:00
|
|
|
// FIXME: get rid of this
|
|
|
|
pub fn subst_prefix(s: &Substitution, n: usize) -> Substitution {
|
2021-04-07 14:17:51 -05:00
|
|
|
Substitution::from_iter(
|
|
|
|
&Interner,
|
|
|
|
s.interned()[..std::cmp::min(s.len(&Interner), n)].iter().cloned(),
|
|
|
|
)
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
2020-05-14 05:47:36 -05:00
|
|
|
/// Return an index of a parameter in the generic type parameter list by it's id.
|
|
|
|
pub fn param_idx(db: &dyn HirDatabase, id: TypeParamId) -> Option<usize> {
|
|
|
|
generics(db.upcast(), id.parent).param_idx(id)
|
|
|
|
}
|
|
|
|
|
2021-04-05 14:25:40 -05:00
|
|
|
pub fn wrap_empty_binders<T>(value: T) -> Binders<T>
|
|
|
|
where
|
2021-04-07 14:26:24 -05:00
|
|
|
T: Fold<Interner, Result = T> + HasInterner<Interner = Interner>,
|
2021-04-05 14:25:40 -05:00
|
|
|
{
|
2021-04-07 14:26:24 -05:00
|
|
|
Binders::empty(&Interner, value.shifted_in_from(&Interner, DebruijnIndex::ONE))
|
2020-01-25 16:38:33 -06:00
|
|
|
}
|
|
|
|
|
2021-04-03 10:49:29 -05:00
|
|
|
pub fn make_only_type_binders<T: HasInterner<Interner = Interner>>(
|
|
|
|
num_vars: usize,
|
|
|
|
value: T,
|
|
|
|
) -> Binders<T> {
|
2021-04-05 10:45:18 -05:00
|
|
|
Binders::new(
|
|
|
|
VariableKinds::from_iter(
|
|
|
|
&Interner,
|
|
|
|
std::iter::repeat(chalk_ir::VariableKind::Ty(chalk_ir::TyVariableKind::General))
|
|
|
|
.take(num_vars),
|
|
|
|
),
|
|
|
|
value,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-04-07 13:47:04 -05:00
|
|
|
// FIXME: get rid of this
|
2021-04-03 10:49:29 -05:00
|
|
|
pub fn make_canonical<T: HasInterner<Interner = Interner>>(
|
2021-04-07 13:47:04 -05:00
|
|
|
value: T,
|
|
|
|
kinds: impl IntoIterator<Item = TyVariableKind>,
|
|
|
|
) -> Canonical<T> {
|
|
|
|
let kinds = kinds.into_iter().map(|tk| {
|
|
|
|
chalk_ir::CanonicalVarKind::new(
|
|
|
|
chalk_ir::VariableKind::Ty(tk),
|
|
|
|
chalk_ir::UniverseIndex::ROOT,
|
|
|
|
)
|
|
|
|
});
|
|
|
|
Canonical { value, binders: chalk_ir::CanonicalVarKinds::from_iter(&Interner, kinds) }
|
2020-06-28 14:17:27 -05:00
|
|
|
}
|
|
|
|
|
2021-04-03 10:40:56 -05:00
|
|
|
pub type TraitRef = chalk_ir::TraitRef<Interner>;
|
|
|
|
|
|
|
|
pub type QuantifiedWhereClause = Binders<WhereClause>;
|
|
|
|
|
|
|
|
pub type QuantifiedWhereClauses = chalk_ir::QuantifiedWhereClauses<Interner>;
|
|
|
|
|
|
|
|
pub type Canonical<T> = chalk_ir::Canonical<T>;
|
|
|
|
|
2019-11-27 08:46:02 -06:00
|
|
|
/// A function signature as seen by type inference: Several parameter types and
|
|
|
|
/// one return type.
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug)]
|
2021-02-28 15:12:07 -06:00
|
|
|
pub struct CallableSig {
|
2019-11-27 08:46:02 -06:00
|
|
|
params_and_return: Arc<[Ty]>,
|
2020-07-14 11:23:45 -05:00
|
|
|
is_varargs: bool,
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
2020-01-25 16:38:33 -06:00
|
|
|
/// A polymorphic function signature.
|
2021-02-28 15:12:07 -06:00
|
|
|
pub type PolyFnSig = Binders<CallableSig>;
|
2020-01-25 16:38:33 -06:00
|
|
|
|
2021-02-28 15:12:07 -06:00
|
|
|
impl CallableSig {
|
|
|
|
pub fn from_params_and_return(mut params: Vec<Ty>, ret: Ty, is_varargs: bool) -> CallableSig {
|
2019-11-27 08:46:02 -06:00
|
|
|
params.push(ret);
|
2021-02-28 15:12:07 -06:00
|
|
|
CallableSig { params_and_return: params.into(), is_varargs }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_fn_ptr(fn_ptr: &FnPointer) -> CallableSig {
|
|
|
|
CallableSig {
|
2021-04-03 15:47:29 -05:00
|
|
|
// FIXME: what to do about lifetime params? -> return PolyFnSig
|
2021-03-24 17:07:54 -05:00
|
|
|
params_and_return: fn_ptr
|
2021-04-05 15:23:16 -05:00
|
|
|
.substitution
|
2021-03-24 17:07:54 -05:00
|
|
|
.clone()
|
2021-04-07 14:26:24 -05:00
|
|
|
.shifted_out_to(&Interner, DebruijnIndex::ONE)
|
2021-04-05 12:15:13 -05:00
|
|
|
.expect("unexpected lifetime vars in fn ptr")
|
2021-04-05 15:23:16 -05:00
|
|
|
.0
|
2021-04-04 13:22:00 -05:00
|
|
|
.interned()
|
2021-03-24 17:07:54 -05:00
|
|
|
.iter()
|
2021-04-01 14:04:02 -05:00
|
|
|
.map(|arg| arg.assert_ty_ref(&Interner).clone())
|
2021-03-24 17:07:54 -05:00
|
|
|
.collect(),
|
2021-02-28 15:12:07 -06:00
|
|
|
is_varargs: fn_ptr.sig.variadic,
|
|
|
|
}
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn params(&self) -> &[Ty] {
|
|
|
|
&self.params_and_return[0..self.params_and_return.len() - 1]
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn ret(&self) -> &Ty {
|
|
|
|
&self.params_and_return[self.params_and_return.len() - 1]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-07 14:10:28 -05:00
|
|
|
impl Fold<Interner> for CallableSig {
|
|
|
|
type Result = CallableSig;
|
|
|
|
|
|
|
|
fn fold_with<'i>(
|
|
|
|
self,
|
|
|
|
folder: &mut dyn chalk_ir::fold::Folder<'i, Interner>,
|
|
|
|
outer_binder: DebruijnIndex,
|
|
|
|
) -> chalk_ir::Fallible<Self::Result>
|
|
|
|
where
|
|
|
|
Interner: 'i,
|
|
|
|
{
|
|
|
|
let vec = self.params_and_return.to_vec();
|
|
|
|
let folded = vec.fold_with(folder, outer_binder)?;
|
|
|
|
Ok(CallableSig { params_and_return: folded.into(), is_varargs: self.is_varargs })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-04 16:00:44 -06:00
|
|
|
#[derive(Copy, Clone, PartialEq, Eq, Debug, Hash)]
|
2021-03-13 13:05:47 -06:00
|
|
|
pub enum ImplTraitId {
|
2020-03-04 16:00:44 -06:00
|
|
|
ReturnTypeImplTrait(hir_def::FunctionId, u16),
|
2020-09-10 07:01:23 -05:00
|
|
|
AsyncBlockTypeImplTrait(hir_def::DefWithBodyId, ExprId),
|
2020-03-04 16:00:44 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
|
|
|
|
pub struct ReturnTypeImplTraits {
|
2020-06-11 15:06:58 -05:00
|
|
|
pub(crate) impl_traits: Vec<ReturnTypeImplTrait>,
|
2020-03-04 16:00:44 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
|
2020-06-11 15:06:58 -05:00
|
|
|
pub(crate) struct ReturnTypeImplTrait {
|
2021-03-21 07:22:22 -05:00
|
|
|
pub(crate) bounds: Binders<Vec<QuantifiedWhereClause>>,
|
2020-03-04 16:00:44 -06:00
|
|
|
}
|
2021-03-13 10:23:19 -06:00
|
|
|
|
2021-03-13 10:36:07 -06:00
|
|
|
pub fn to_foreign_def_id(id: TypeAliasId) -> ForeignDefId {
|
2021-03-13 10:23:19 -06:00
|
|
|
chalk_ir::ForeignDefId(salsa::InternKey::as_intern_id(&id))
|
|
|
|
}
|
|
|
|
|
2021-03-13 10:36:07 -06:00
|
|
|
pub fn from_foreign_def_id(id: ForeignDefId) -> TypeAliasId {
|
|
|
|
salsa::InternKey::from_intern_id(id.0)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn to_assoc_type_id(id: TypeAliasId) -> AssocTypeId {
|
|
|
|
chalk_ir::AssocTypeId(salsa::InternKey::as_intern_id(&id))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_assoc_type_id(id: AssocTypeId) -> TypeAliasId {
|
2021-03-13 10:23:19 -06:00
|
|
|
salsa::InternKey::from_intern_id(id.0)
|
|
|
|
}
|
2021-03-13 12:47:34 -06:00
|
|
|
|
|
|
|
pub fn from_placeholder_idx(db: &dyn HirDatabase, idx: PlaceholderIndex) -> TypeParamId {
|
|
|
|
assert_eq!(idx.ui, chalk_ir::UniverseIndex::ROOT);
|
|
|
|
let interned_id = salsa::InternKey::from_intern_id(salsa::InternId::from(idx.idx));
|
|
|
|
db.lookup_intern_type_param_id(interned_id)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn to_placeholder_idx(db: &dyn HirDatabase, id: TypeParamId) -> PlaceholderIndex {
|
|
|
|
let interned_id = db.intern_type_param_id(id);
|
|
|
|
PlaceholderIndex {
|
|
|
|
ui: chalk_ir::UniverseIndex::ROOT,
|
|
|
|
idx: salsa::InternKey::as_intern_id(&interned_id).as_usize(),
|
|
|
|
}
|
|
|
|
}
|
2021-03-18 15:53:19 -05:00
|
|
|
|
2021-04-05 13:46:15 -05:00
|
|
|
pub fn lt_from_placeholder_idx(db: &dyn HirDatabase, idx: PlaceholderIndex) -> LifetimeParamId {
|
|
|
|
assert_eq!(idx.ui, chalk_ir::UniverseIndex::ROOT);
|
|
|
|
let interned_id = salsa::InternKey::from_intern_id(salsa::InternId::from(idx.idx));
|
|
|
|
db.lookup_intern_lifetime_param_id(interned_id)
|
|
|
|
}
|
|
|
|
|
2021-04-06 04:45:41 -05:00
|
|
|
pub fn const_from_placeholder_idx(db: &dyn HirDatabase, idx: PlaceholderIndex) -> ConstParamId {
|
|
|
|
assert_eq!(idx.ui, chalk_ir::UniverseIndex::ROOT);
|
|
|
|
let interned_id = salsa::InternKey::from_intern_id(salsa::InternId::from(idx.idx));
|
|
|
|
db.lookup_intern_const_param_id(interned_id)
|
|
|
|
}
|
|
|
|
|
2021-03-18 15:53:19 -05:00
|
|
|
pub fn to_chalk_trait_id(id: TraitId) -> ChalkTraitId {
|
|
|
|
chalk_ir::TraitId(salsa::InternKey::as_intern_id(&id))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_chalk_trait_id(id: ChalkTraitId) -> TraitId {
|
|
|
|
salsa::InternKey::from_intern_id(id.0)
|
|
|
|
}
|
2021-04-06 03:50:55 -05:00
|
|
|
|
|
|
|
pub fn static_lifetime() -> Lifetime {
|
|
|
|
LifetimeData::Static.intern(&Interner)
|
|
|
|
}
|
2021-04-06 04:45:41 -05:00
|
|
|
|
|
|
|
pub fn dummy_usize_const() -> Const {
|
|
|
|
let usize_ty = chalk_ir::TyKind::Scalar(Scalar::Uint(UintTy::Usize)).intern(&Interner);
|
|
|
|
chalk_ir::ConstData {
|
|
|
|
ty: usize_ty,
|
|
|
|
value: chalk_ir::ConstValue::Concrete(chalk_ir::ConcreteConst { interned: () }),
|
|
|
|
}
|
|
|
|
.intern(&Interner)
|
|
|
|
}
|
2021-04-07 14:26:37 -05:00
|
|
|
|
|
|
|
pub(crate) fn fold_free_vars<T: HasInterner<Interner = Interner> + Fold<Interner>>(
|
|
|
|
t: T,
|
|
|
|
f: impl FnMut(BoundVar, DebruijnIndex) -> Ty,
|
|
|
|
) -> T::Result {
|
|
|
|
use chalk_ir::{fold::Folder, Fallible};
|
|
|
|
struct FreeVarFolder<F>(F);
|
|
|
|
impl<'i, F: FnMut(BoundVar, DebruijnIndex) -> Ty + 'i> Folder<'i, Interner> for FreeVarFolder<F> {
|
|
|
|
fn as_dyn(&mut self) -> &mut dyn Folder<'i, Interner> {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
fn interner(&self) -> &'i Interner {
|
|
|
|
&Interner
|
|
|
|
}
|
|
|
|
|
|
|
|
fn fold_free_var_ty(
|
|
|
|
&mut self,
|
|
|
|
bound_var: BoundVar,
|
|
|
|
outer_binder: DebruijnIndex,
|
|
|
|
) -> Fallible<Ty> {
|
|
|
|
Ok(self.0(bound_var, outer_binder))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
t.fold_with(&mut FreeVarFolder(f), DebruijnIndex::INNERMOST).expect("fold failed unexpectedly")
|
|
|
|
}
|
2021-04-08 06:32:48 -05:00
|
|
|
|
|
|
|
pub(crate) fn fold_tys<T: HasInterner<Interner = Interner> + Fold<Interner>>(
|
|
|
|
t: T,
|
|
|
|
f: impl FnMut(Ty, DebruijnIndex) -> Ty,
|
|
|
|
binders: DebruijnIndex,
|
|
|
|
) -> T::Result {
|
|
|
|
use chalk_ir::{
|
|
|
|
fold::{Folder, SuperFold},
|
|
|
|
Fallible,
|
|
|
|
};
|
|
|
|
struct TyFolder<F>(F);
|
|
|
|
impl<'i, F: FnMut(Ty, DebruijnIndex) -> Ty + 'i> Folder<'i, Interner> for TyFolder<F> {
|
|
|
|
fn as_dyn(&mut self) -> &mut dyn Folder<'i, Interner> {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
fn interner(&self) -> &'i Interner {
|
|
|
|
&Interner
|
|
|
|
}
|
|
|
|
|
|
|
|
fn fold_ty(&mut self, ty: Ty, outer_binder: DebruijnIndex) -> Fallible<Ty> {
|
|
|
|
let ty = ty.super_fold_with(self.as_dyn(), outer_binder)?;
|
|
|
|
Ok(self.0(ty, outer_binder))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
t.fold_with(&mut TyFolder(f), binders).expect("fold failed unexpectedly")
|
|
|
|
}
|