rust-analyzer/crates/hir_ty/src/lib.rs

552 lines
17 KiB
Rust
Raw Normal View History

2019-11-27 14:46:02 +00:00
//! The type system. We currently use this to infer types for completion, hover
//! information and various assists.
2021-04-03 15:42:13 +00:00
2020-04-06 14:58:16 +00:00
#[allow(unused)]
macro_rules! eprintln {
($($tt:tt)*) => { stdx::eprintln!($($tt)*) };
}
2019-11-27 14:46:02 +00:00
mod autoderef;
2021-04-04 10:55:47 +00:00
mod builder;
2021-04-09 12:33:03 +00:00
mod chalk_db;
mod chalk_ext;
pub mod consteval;
2021-04-09 12:33:03 +00:00
mod infer;
mod interner;
2021-04-09 12:33:03 +00:00
mod lower;
mod mapping;
2021-04-09 12:33:03 +00:00
mod tls;
mod utils;
mod walk;
2019-11-27 14:46:02 +00:00
pub mod db;
pub mod diagnostics;
2021-04-09 12:33:03 +00:00
pub mod display;
pub mod method_resolution;
pub mod primitive;
pub mod traits;
2019-11-27 14:46:02 +00:00
#[cfg(test)]
mod tests;
#[cfg(test)]
mod test_db;
use std::sync::Arc;
2021-04-04 10:55:47 +00:00
2021-04-03 15:49:29 +00:00
use chalk_ir::{
2021-04-07 19:26:24 +00:00
fold::{Fold, Shift},
2021-04-03 15:49:29 +00:00
interner::HasInterner,
2021-12-04 13:08:43 +00:00
NoSolution, UintTy,
2021-04-03 15:49:29 +00:00
};
use hir_def::{
expr::ExprId,
type_ref::{ConstScalar, Rawness},
2021-12-29 13:35:59 +00:00
TypeOrConstParamId,
};
2022-03-09 18:50:24 +00:00
use itertools::Either;
use utils::Generics;
2019-11-27 14:46:02 +00:00
use crate::{db::HirDatabase, utils::generics};
2019-11-27 14:46:02 +00:00
pub use autoderef::autoderef;
2022-03-09 18:50:24 +00:00
pub use builder::{ParamKind, TyBuilder};
2021-04-07 18:40:01 +00:00
pub use chalk_ext::*;
pub use infer::{could_unify, InferenceDiagnostic, InferenceResult};
2021-04-09 12:15:26 +00:00
pub use interner::Interner;
2020-01-24 14:22:00 +00:00
pub use lower::{
associated_type_shorthand_candidates, callable_item_sig, CallableDefId, ImplTraitLoweringMode,
TyDefId, TyLoweringContext, ValueTyDefId,
2020-01-24 14:22:00 +00:00
};
2021-04-09 12:28:04 +00:00
pub use mapping::{
2021-12-29 13:35:59 +00:00
from_assoc_type_id, from_chalk_trait_id, from_foreign_def_id, from_placeholder_idx,
lt_from_placeholder_idx, to_assoc_type_id, to_chalk_trait_id, to_foreign_def_id,
to_placeholder_idx,
2021-04-09 12:28:04 +00:00
};
pub use traits::TraitEnvironment;
pub use utils::all_super_traits;
pub use walk::TypeWalk;
2019-11-27 14:46:02 +00:00
pub use chalk_ir::{
cast::Cast, AdtId, BoundVar, DebruijnIndex, Mutability, Safety, Scalar, TyVariableKind,
};
2021-03-01 20:57:39 +00:00
2021-03-13 16:23:19 +00:00
pub type ForeignDefId = chalk_ir::ForeignDefId<Interner>;
2021-03-13 16:36:07 +00:00
pub type AssocTypeId = chalk_ir::AssocTypeId<Interner>;
2021-03-13 18:27:09 +00:00
pub type FnDefId = chalk_ir::FnDefId<Interner>;
pub type ClosureId = chalk_ir::ClosureId<Interner>;
2021-03-13 19:05:47 +00:00
pub type OpaqueTyId = chalk_ir::OpaqueTyId<Interner>;
2021-03-13 18:47:34 +00:00
pub type PlaceholderIndex = chalk_ir::PlaceholderIndex;
2021-03-13 16:23:19 +00:00
2021-04-05 15:45:18 +00:00
pub type VariableKind = chalk_ir::VariableKind<Interner>;
pub type VariableKinds = chalk_ir::VariableKinds<Interner>;
pub type CanonicalVarKinds = chalk_ir::CanonicalVarKinds<Interner>;
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;
pub type Lifetime = chalk_ir::Lifetime<Interner>;
pub type LifetimeData = chalk_ir::LifetimeData<Interner>;
pub type LifetimeOutlives = chalk_ir::LifetimeOutlives<Interner>;
2021-04-06 09:45:41 +00: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 20:53:19 +00:00
pub type ChalkTraitId = chalk_ir::TraitId<Interner>;
2021-04-09 12:33:03 +00: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>;
2021-03-18 20:53:19 +00:00
2021-03-14 15:30:02 +00:00
pub type FnSig = chalk_ir::FnSig<Interner>;
2021-02-28 21:12:07 +00:00
pub type InEnvironment<T> = chalk_ir::InEnvironment<T>;
2021-07-09 17:12:56 +00:00
pub type Environment = chalk_ir::Environment<Interner>;
pub type DomainGoal = chalk_ir::DomainGoal<Interner>;
pub type Goal = chalk_ir::Goal<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>;
// FIXME: get rid of this
pub fn subst_prefix(s: &Substitution, n: usize) -> Substitution {
2021-04-07 19:17:51 +00:00
Substitution::from_iter(
2021-12-19 16:58:39 +00:00
Interner,
s.as_slice(Interner)[..std::cmp::min(s.len(Interner), n)].iter().cloned(),
2021-04-07 19:17:51 +00:00
)
2019-11-27 14:46:02 +00:00
}
2020-05-14 10:47:36 +00:00
/// Return an index of a parameter in the generic type parameter list by it's id.
2021-12-29 13:35:59 +00:00
pub fn param_idx(db: &dyn HirDatabase, id: TypeOrConstParamId) -> Option<usize> {
2020-05-14 10:47:36 +00:00
generics(db.upcast(), id.parent).param_idx(id)
}
2021-04-09 12:39:07 +00:00
pub(crate) fn wrap_empty_binders<T>(value: T) -> Binders<T>
where
2021-04-07 19:26:24 +00:00
T: Fold<Interner, Result = T> + HasInterner<Interner = Interner>,
{
2021-12-19 16:58:39 +00:00
Binders::empty(Interner, value.shifted_in_from(Interner, DebruijnIndex::ONE))
}
2022-03-09 18:50:24 +00:00
pub(crate) fn make_type_and_const_binders<T: HasInterner<Interner = Interner>>(
which_is_const: impl Iterator<Item = Option<Ty>>,
2021-04-03 15:49:29 +00:00
value: T,
) -> Binders<T> {
2021-04-05 15:45:18 +00:00
Binders::new(
VariableKinds::from_iter(
2021-12-19 16:58:39 +00:00
Interner,
2022-03-09 18:50:24 +00:00
which_is_const.map(|x| {
if let Some(ty) = x {
chalk_ir::VariableKind::Const(ty)
} else {
chalk_ir::VariableKind::Ty(chalk_ir::TyVariableKind::General)
}
}),
2021-04-05 15:45:18 +00:00
),
value,
)
}
2022-03-09 18:50:24 +00:00
pub(crate) fn make_single_type_binders<T: HasInterner<Interner = Interner>>(
value: T,
) -> Binders<T> {
Binders::new(
VariableKinds::from_iter(
Interner,
std::iter::once(chalk_ir::VariableKind::Ty(chalk_ir::TyVariableKind::General)),
),
value,
)
}
pub(crate) fn make_binders_with_count<T: HasInterner<Interner = Interner>>(
db: &dyn HirDatabase,
count: usize,
generics: &Generics,
value: T,
) -> Binders<T> {
let it = generics.iter_id().take(count).map(|id| match id {
Either::Left(_) => None,
Either::Right(id) => Some(db.const_param_ty(id)),
});
crate::make_type_and_const_binders(it, value)
}
pub(crate) fn make_binders<T: HasInterner<Interner = Interner>>(
db: &dyn HirDatabase,
generics: &Generics,
value: T,
) -> Binders<T> {
make_binders_with_count(db, usize::MAX, generics, value)
}
// FIXME: get rid of this
2021-04-03 15:49:29 +00:00
pub fn make_canonical<T: HasInterner<Interner = Interner>>(
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,
)
});
2021-12-19 16:58:39 +00:00
Canonical { value, binders: chalk_ir::CanonicalVarKinds::from_iter(Interner, kinds) }
}
// FIXME: get rid of this, just replace it by FnPointer
2019-11-27 14:46:02 +00:00
/// A function signature as seen by type inference: Several parameter types and
/// one return type.
#[derive(Clone, PartialEq, Eq, Debug)]
2021-02-28 21:12:07 +00:00
pub struct CallableSig {
2019-11-27 14:46:02 +00:00
params_and_return: Arc<[Ty]>,
2020-07-14 16:23:45 +00:00
is_varargs: bool,
legacy_const_generics_indices: Arc<[u32]>,
2019-11-27 14:46:02 +00:00
}
2021-04-09 12:33:03 +00:00
has_interner!(CallableSig);
/// A polymorphic function signature.
2021-02-28 21:12:07 +00:00
pub type PolyFnSig = Binders<CallableSig>;
2021-02-28 21:12:07 +00:00
impl CallableSig {
pub fn from_params_and_return(mut params: Vec<Ty>, ret: Ty, is_varargs: bool) -> CallableSig {
2019-11-27 14:46:02 +00:00
params.push(ret);
CallableSig {
params_and_return: params.into(),
is_varargs,
legacy_const_generics_indices: Arc::new([]),
}
2021-02-28 21:12:07 +00:00
}
pub fn from_fn_ptr(fn_ptr: &FnPointer) -> CallableSig {
CallableSig {
2021-04-03 20:47:29 +00:00
// FIXME: what to do about lifetime params? -> return PolyFnSig
2021-03-24 22:07:54 +00:00
params_and_return: fn_ptr
2021-04-05 20:23:16 +00:00
.substitution
2021-03-24 22:07:54 +00:00
.clone()
2021-12-19 16:58:39 +00:00
.shifted_out_to(Interner, DebruijnIndex::ONE)
.expect("unexpected lifetime vars in fn ptr")
2021-04-05 20:23:16 +00:00
.0
2021-12-19 16:58:39 +00:00
.as_slice(Interner)
2021-03-24 22:07:54 +00:00
.iter()
2021-12-19 16:58:39 +00:00
.map(|arg| arg.assert_ty_ref(Interner).clone())
2021-03-24 22:07:54 +00:00
.collect(),
2021-02-28 21:12:07 +00:00
is_varargs: fn_ptr.sig.variadic,
legacy_const_generics_indices: Arc::new([]),
2021-02-28 21:12:07 +00:00
}
2019-11-27 14:46:02 +00:00
}
pub fn set_legacy_const_generics_indices(&mut self, indices: &[u32]) {
self.legacy_const_generics_indices = indices.into();
}
pub fn to_fn_ptr(&self) -> FnPointer {
FnPointer {
num_binders: 0,
sig: FnSig { abi: (), safety: Safety::Safe, variadic: self.is_varargs },
substitution: FnSubst(Substitution::from_iter(
2021-12-19 16:58:39 +00:00
Interner,
self.params_and_return.iter().cloned(),
)),
}
}
2019-11-27 14:46:02 +00: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 19:10:28 +00:00
impl Fold<Interner> for CallableSig {
type Result = CallableSig;
2021-12-19 16:58:39 +00:00
fn fold_with<E>(
2021-04-07 19:10:28 +00:00
self,
2021-12-19 16:58:39 +00:00
folder: &mut dyn chalk_ir::fold::Folder<Interner, Error = E>,
2021-04-07 19:10:28 +00:00
outer_binder: DebruijnIndex,
2021-12-19 16:58:39 +00:00
) -> Result<Self::Result, E> {
2021-04-07 19:10:28 +00:00
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,
legacy_const_generics_indices: self.legacy_const_generics_indices,
})
2021-04-07 19:10:28 +00:00
}
}
#[derive(Copy, Clone, PartialEq, Eq, Debug, Hash)]
2021-03-13 19:05:47 +00:00
pub enum ImplTraitId {
ReturnTypeImplTrait(hir_def::FunctionId, u16),
2020-09-10 12:01:23 +00:00
AsyncBlockTypeImplTrait(hir_def::DefWithBodyId, ExprId),
}
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
pub struct ReturnTypeImplTraits {
2020-06-11 20:06:58 +00:00
pub(crate) impl_traits: Vec<ReturnTypeImplTrait>,
}
2021-04-09 12:33:03 +00:00
has_interner!(ReturnTypeImplTraits);
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
2020-06-11 20:06:58 +00:00
pub(crate) struct ReturnTypeImplTrait {
pub(crate) bounds: Binders<Vec<QuantifiedWhereClause>>,
}
2021-03-13 16:23:19 +00:00
pub fn static_lifetime() -> Lifetime {
2021-12-19 16:58:39 +00:00
LifetimeData::Static.intern(Interner)
}
2021-04-06 09:45:41 +00:00
pub fn dummy_usize_const() -> Const {
2021-12-19 16:58:39 +00:00
let usize_ty = chalk_ir::TyKind::Scalar(Scalar::Uint(UintTy::Usize)).intern(Interner);
2021-04-06 09:45:41 +00:00
chalk_ir::ConstData {
ty: usize_ty,
value: chalk_ir::ConstValue::Concrete(chalk_ir::ConcreteConst {
interned: ConstScalar::Unknown,
}),
2021-04-06 09:45:41 +00:00
}
2021-12-19 16:58:39 +00:00
.intern(Interner)
2021-04-06 09:45:41 +00:00
}
2021-04-07 19:26:37 +00:00
pub(crate) fn fold_free_vars<T: HasInterner<Interner = Interner> + Fold<Interner>>(
t: T,
2022-03-09 18:50:24 +00:00
for_ty: impl FnMut(BoundVar, DebruijnIndex) -> Ty,
for_const: impl FnMut(Ty, BoundVar, DebruijnIndex) -> Const,
2021-04-07 19:26:37 +00:00
) -> T::Result {
use chalk_ir::{fold::Folder, Fallible};
2022-03-09 18:50:24 +00:00
struct FreeVarFolder<F1, F2>(F1, F2);
impl<
'i,
F1: FnMut(BoundVar, DebruijnIndex) -> Ty + 'i,
F2: FnMut(Ty, BoundVar, DebruijnIndex) -> Const + 'i,
> Folder<Interner> for FreeVarFolder<F1, F2>
{
2021-12-04 13:08:43 +00:00
type Error = NoSolution;
2021-12-19 16:58:39 +00:00
fn as_dyn(&mut self) -> &mut dyn Folder<Interner, Error = Self::Error> {
2021-04-07 19:26:37 +00:00
self
}
2021-12-19 16:58:39 +00:00
fn interner(&self) -> Interner {
Interner
2021-04-07 19:26:37 +00:00
}
fn fold_free_var_ty(
&mut self,
bound_var: BoundVar,
outer_binder: DebruijnIndex,
) -> Fallible<Ty> {
Ok(self.0(bound_var, outer_binder))
}
2022-03-09 18:50:24 +00:00
fn fold_free_var_const(
&mut self,
ty: Ty,
bound_var: BoundVar,
outer_binder: DebruijnIndex,
) -> Fallible<Const> {
Ok(self.1(ty, bound_var, outer_binder))
}
2021-04-07 19:26:37 +00:00
}
2022-03-09 18:50:24 +00:00
t.fold_with(&mut FreeVarFolder(for_ty, for_const), DebruijnIndex::INNERMOST)
.expect("fold failed unexpectedly")
2021-04-07 19:26:37 +00:00
}
2021-04-08 11:32:48 +00:00
pub(crate) fn fold_tys<T: HasInterner<Interner = Interner> + Fold<Interner>>(
t: T,
2022-03-09 18:50:24 +00:00
mut for_ty: impl FnMut(Ty, DebruijnIndex) -> Ty,
binders: DebruijnIndex,
) -> T::Result {
fold_tys_and_consts(
t,
|x, d| match x {
Either::Left(x) => Either::Left(for_ty(x, d)),
Either::Right(x) => Either::Right(x),
},
binders,
)
}
pub(crate) fn fold_tys_and_consts<T: HasInterner<Interner = Interner> + Fold<Interner>>(
t: T,
f: impl FnMut(Either<Ty, Const>, DebruijnIndex) -> Either<Ty, Const>,
2021-04-08 11:32:48 +00:00
binders: DebruijnIndex,
) -> T::Result {
use chalk_ir::{
fold::{Folder, SuperFold},
Fallible,
};
struct TyFolder<F>(F);
2022-03-09 18:50:24 +00:00
impl<'i, F: FnMut(Either<Ty, Const>, DebruijnIndex) -> Either<Ty, Const> + 'i> Folder<Interner>
for TyFolder<F>
{
2021-12-04 13:08:43 +00:00
type Error = NoSolution;
2021-12-19 16:58:39 +00:00
fn as_dyn(&mut self) -> &mut dyn Folder<Interner, Error = Self::Error> {
2021-04-08 11:32:48 +00:00
self
}
2021-12-19 16:58:39 +00:00
fn interner(&self) -> Interner {
Interner
2021-04-08 11:32:48 +00:00
}
fn fold_ty(&mut self, ty: Ty, outer_binder: DebruijnIndex) -> Fallible<Ty> {
let ty = ty.super_fold_with(self.as_dyn(), outer_binder)?;
2022-03-09 18:50:24 +00:00
Ok(self.0(Either::Left(ty), outer_binder).left().unwrap())
}
fn fold_const(&mut self, c: Const, outer_binder: DebruijnIndex) -> Fallible<Const> {
Ok(self.0(Either::Right(c), outer_binder).right().unwrap())
2021-04-08 11:32:48 +00:00
}
}
t.fold_with(&mut TyFolder(f), binders).expect("fold failed unexpectedly")
}
2021-05-23 10:52:41 +00:00
/// 'Canonicalizes' the `t` by replacing any errors with new variables. Also
/// ensures there are no unbound variables or inference variables anywhere in
/// the `t`.
pub fn replace_errors_with_variables<T>(t: &T) -> Canonical<T::Result>
where
2021-05-23 10:52:41 +00:00
T: HasInterner<Interner = Interner> + Fold<Interner> + Clone,
T::Result: HasInterner<Interner = Interner>,
{
use chalk_ir::{
fold::{Folder, SuperFold},
2021-12-04 13:08:43 +00:00
Fallible,
};
struct ErrorReplacer {
vars: usize,
}
2022-01-05 15:19:10 +00:00
impl Folder<Interner> for ErrorReplacer {
2021-12-04 13:08:43 +00:00
type Error = NoSolution;
2021-12-19 16:58:39 +00:00
fn as_dyn(&mut self) -> &mut dyn Folder<Interner, Error = Self::Error> {
self
}
2021-12-19 16:58:39 +00:00
fn interner(&self) -> Interner {
Interner
}
fn fold_ty(&mut self, ty: Ty, outer_binder: DebruijnIndex) -> Fallible<Ty> {
2021-12-19 16:58:39 +00:00
if let TyKind::Error = ty.kind(Interner) {
let index = self.vars;
self.vars += 1;
2021-12-19 16:58:39 +00:00
Ok(TyKind::BoundVar(BoundVar::new(outer_binder, index)).intern(Interner))
} else {
let ty = ty.super_fold_with(self.as_dyn(), outer_binder)?;
Ok(ty)
}
}
fn fold_inference_ty(
&mut self,
2021-05-23 10:52:41 +00:00
_var: InferenceVar,
_kind: TyVariableKind,
_outer_binder: DebruijnIndex,
) -> Fallible<Ty> {
if cfg!(debug_assertions) {
// we don't want to just panic here, because then the error message
// won't contain the whole thing, which would not be very helpful
Err(NoSolution)
} else {
2021-12-19 16:58:39 +00:00
Ok(TyKind::Error.intern(Interner))
2021-05-23 10:52:41 +00:00
}
}
fn fold_free_var_ty(
&mut self,
_bound_var: BoundVar,
_outer_binder: DebruijnIndex,
) -> Fallible<Ty> {
2021-05-23 10:52:41 +00:00
if cfg!(debug_assertions) {
// we don't want to just panic here, because then the error message
// won't contain the whole thing, which would not be very helpful
Err(NoSolution)
} else {
2021-12-19 16:58:39 +00:00
Ok(TyKind::Error.intern(Interner))
2021-05-23 10:52:41 +00:00
}
}
fn fold_inference_const(
&mut self,
_ty: Ty,
_var: InferenceVar,
_outer_binder: DebruijnIndex,
) -> Fallible<Const> {
if cfg!(debug_assertions) {
Err(NoSolution)
} else {
Ok(dummy_usize_const())
}
}
fn fold_free_var_const(
&mut self,
_ty: Ty,
_bound_var: BoundVar,
_outer_binder: DebruijnIndex,
) -> Fallible<Const> {
if cfg!(debug_assertions) {
Err(NoSolution)
} else {
Ok(dummy_usize_const())
}
}
fn fold_inference_lifetime(
&mut self,
_var: InferenceVar,
_outer_binder: DebruijnIndex,
) -> Fallible<Lifetime> {
if cfg!(debug_assertions) {
Err(NoSolution)
} else {
Ok(static_lifetime())
}
}
fn fold_free_var_lifetime(
&mut self,
_bound_var: BoundVar,
_outer_binder: DebruijnIndex,
) -> Fallible<Lifetime> {
if cfg!(debug_assertions) {
Err(NoSolution)
} else {
Ok(static_lifetime())
}
}
}
let mut error_replacer = ErrorReplacer { vars: 0 };
2021-05-23 10:52:41 +00:00
let value = match t.clone().fold_with(&mut error_replacer, DebruijnIndex::INNERMOST) {
Ok(t) => t,
Err(_) => panic!("Encountered unbound or inference vars in {:?}", t),
};
let kinds = (0..error_replacer.vars).map(|_| {
chalk_ir::CanonicalVarKind::new(
chalk_ir::VariableKind::Ty(TyVariableKind::General),
chalk_ir::UniverseIndex::ROOT,
)
});
2021-12-19 16:58:39 +00:00
Canonical { value, binders: chalk_ir::CanonicalVarKinds::from_iter(Interner, kinds) }
}