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.
|
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;
|
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;
|
|
|
|
|
2020-07-13 08:34:46 -05:00
|
|
|
use std::{iter, mem, ops::Deref, sync::Arc};
|
2019-11-27 08:46:02 -06:00
|
|
|
|
2021-02-28 12:13:37 -06:00
|
|
|
use base_db::salsa;
|
2019-11-27 08:46:02 -06:00
|
|
|
use hir_def::{
|
2021-03-13 12:27:09 -06:00
|
|
|
builtin_type::BuiltinType, expr::ExprId, type_ref::Rawness, AssocContainerId, FunctionId,
|
|
|
|
GenericDefId, HasModule, LifetimeParamId, Lookup, TraitId, TypeAliasId, TypeParamId,
|
2019-11-27 08:46:02 -06:00
|
|
|
};
|
2020-07-13 08:34:46 -05:00
|
|
|
use itertools::Itertools;
|
2019-11-27 08:46:02 -06:00
|
|
|
|
|
|
|
use crate::{
|
|
|
|
db::HirDatabase,
|
2020-07-13 08:34:46 -05:00
|
|
|
display::HirDisplay,
|
2019-12-07 04:50:36 -06:00
|
|
|
utils::{generics, make_mut_slice, Generics},
|
2019-11-27 08:46:02 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
pub use autoderef::autoderef;
|
2021-03-01 05:35:11 -06:00
|
|
|
pub use infer::{InferenceResult, InferenceVar};
|
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
|
|
|
};
|
2019-11-27 08:46:02 -06:00
|
|
|
pub use traits::{InEnvironment, Obligation, ProjectionPredicate, TraitEnvironment};
|
|
|
|
|
2021-03-14 10:30:02 -05:00
|
|
|
pub use chalk_ir::{AdtId, BoundVar, DebruijnIndex, Mutability, Safety, Scalar, TyVariableKind};
|
2021-03-01 14:57:39 -06:00
|
|
|
|
2021-03-13 07:44:51 -06:00
|
|
|
pub use crate::traits::chalk::Interner;
|
2020-04-05 11:24:18 -05: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
|
|
|
|
2020-12-11 06:49:32 -06:00
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
|
|
|
|
pub enum Lifetime {
|
|
|
|
Parameter(LifetimeParamId),
|
|
|
|
Static,
|
|
|
|
}
|
|
|
|
|
2020-03-04 16:00:44 -06:00
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
|
|
|
|
pub struct OpaqueTy {
|
|
|
|
pub opaque_ty_id: OpaqueTyId,
|
2021-03-14 10:33:27 -05:00
|
|
|
pub substitution: Substs,
|
2020-03-04 16:00:44 -06:00
|
|
|
}
|
|
|
|
|
2019-11-27 08:46:02 -06:00
|
|
|
/// A "projection" type corresponds to an (unnormalized)
|
|
|
|
/// projection like `<P0 as Trait<P1..Pn>>::Foo`. Note that the
|
|
|
|
/// trait and all its parameters are fully known.
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
|
|
|
|
pub struct ProjectionTy {
|
2021-03-14 10:26:12 -05:00
|
|
|
pub associated_ty_id: AssocTypeId,
|
|
|
|
pub substitution: Substs,
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl ProjectionTy {
|
2020-03-13 10:05:46 -05:00
|
|
|
pub fn trait_ref(&self, db: &dyn HirDatabase) -> TraitRef {
|
2021-03-14 10:26:12 -05:00
|
|
|
TraitRef { trait_: self.trait_(db), substs: self.substitution.clone() }
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
fn trait_(&self, db: &dyn HirDatabase) -> TraitId {
|
2021-03-14 10:26:12 -05:00
|
|
|
match from_assoc_type_id(self.associated_ty_id).lookup(db.upcast()).container {
|
2019-12-20 04:59:50 -06:00
|
|
|
AssocContainerId::TraitId(it) => it,
|
2019-11-27 08:46:02 -06:00
|
|
|
_ => panic!("projection ty without parent trait"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TypeWalk for ProjectionTy {
|
|
|
|
fn walk(&self, f: &mut impl FnMut(&Ty)) {
|
2021-03-14 10:26:12 -05:00
|
|
|
self.substitution.walk(f);
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
2020-04-05 11:24:18 -05:00
|
|
|
fn walk_mut_binders(
|
|
|
|
&mut self,
|
|
|
|
f: &mut impl FnMut(&mut Ty, DebruijnIndex),
|
|
|
|
binders: DebruijnIndex,
|
|
|
|
) {
|
2021-03-14 10:26:12 -05:00
|
|
|
self.substitution.walk_mut_binders(f, binders);
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-14 10:30:02 -05:00
|
|
|
pub type FnSig = chalk_ir::FnSig<Interner>;
|
2021-02-28 15:12:07 -06:00
|
|
|
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
|
|
|
|
pub struct FnPointer {
|
|
|
|
pub num_args: usize,
|
|
|
|
pub sig: FnSig,
|
|
|
|
pub substs: Substs,
|
|
|
|
}
|
|
|
|
|
2021-03-01 07:24:00 -06:00
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
|
|
|
|
pub enum AliasTy {
|
|
|
|
/// A "projection" type corresponds to an (unnormalized)
|
|
|
|
/// projection like `<P0 as Trait<P1..Pn>>::Foo`. Note that the
|
|
|
|
/// trait and all its parameters are fully known.
|
|
|
|
Projection(ProjectionTy),
|
|
|
|
/// An opaque type (`impl Trait`).
|
|
|
|
///
|
|
|
|
/// This is currently only used for return type impl trait; each instance of
|
|
|
|
/// `impl Trait` in a return type gets its own ID.
|
|
|
|
Opaque(OpaqueTy),
|
|
|
|
}
|
|
|
|
|
2019-11-27 08:46:02 -06:00
|
|
|
/// A type.
|
|
|
|
///
|
|
|
|
/// See also the `TyKind` enum in rustc (librustc/ty/sty.rs), which represents
|
|
|
|
/// the same thing (but in a different way).
|
|
|
|
///
|
|
|
|
/// This should be cheap to clone.
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
|
2021-03-13 07:44:51 -06:00
|
|
|
pub enum TyKind {
|
2021-02-28 12:13:37 -06:00
|
|
|
/// Structures, enumerations and unions.
|
2021-03-01 14:57:39 -06:00
|
|
|
Adt(AdtId<Interner>, Substs),
|
2021-02-28 12:13:37 -06:00
|
|
|
|
|
|
|
/// Represents an associated item like `Iterator::Item`. This is used
|
|
|
|
/// when we have tried to normalize a projection like `T::Item` but
|
|
|
|
/// couldn't find a better representation. In that case, we generate
|
|
|
|
/// an **application type** like `(Iterator::Item)<T>`.
|
2021-03-13 10:36:07 -06:00
|
|
|
AssociatedType(AssocTypeId, Substs),
|
2021-02-28 12:13:37 -06:00
|
|
|
|
|
|
|
/// a scalar type like `bool` or `u32`
|
|
|
|
Scalar(Scalar),
|
|
|
|
|
|
|
|
/// A tuple type. For example, `(i32, bool)`.
|
2021-02-28 13:39:43 -06:00
|
|
|
Tuple(usize, Substs),
|
2021-02-28 12:13:37 -06:00
|
|
|
|
|
|
|
/// An array with the given length. Written as `[T; n]`.
|
2021-03-14 11:40:55 -05:00
|
|
|
Array(Ty),
|
2021-02-28 12:13:37 -06:00
|
|
|
|
|
|
|
/// The pointee of an array slice. Written as `[T]`.
|
2021-03-14 11:40:55 -05:00
|
|
|
Slice(Ty),
|
2021-02-28 12:13:37 -06:00
|
|
|
|
|
|
|
/// A raw pointer. Written as `*mut T` or `*const T`
|
2021-03-14 11:40:55 -05:00
|
|
|
Raw(Mutability, Ty),
|
2021-02-28 12:13:37 -06:00
|
|
|
|
|
|
|
/// A reference; a pointer with an associated lifetime. Written as
|
|
|
|
/// `&'a mut T` or `&'a T`.
|
2021-03-14 11:40:55 -05:00
|
|
|
Ref(Mutability, Ty),
|
2021-02-28 12:13:37 -06:00
|
|
|
|
|
|
|
/// This represents a placeholder for an opaque type in situations where we
|
|
|
|
/// don't know the hidden type (i.e. currently almost always). This is
|
|
|
|
/// analogous to the `AssociatedType` type constructor.
|
|
|
|
/// It is also used as the type of async block, with one type parameter
|
|
|
|
/// representing the Future::Output type.
|
|
|
|
OpaqueType(OpaqueTyId, Substs),
|
|
|
|
|
|
|
|
/// The anonymous type of a function declaration/definition. Each
|
|
|
|
/// function has a unique type, which is output (for a function
|
|
|
|
/// named `foo` returning an `i32`) as `fn() -> i32 {foo}`.
|
|
|
|
///
|
|
|
|
/// This includes tuple struct / enum variant constructors as well.
|
|
|
|
///
|
|
|
|
/// For example the type of `bar` here:
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// fn foo() -> i32 { 1 }
|
|
|
|
/// let bar = foo; // bar: fn() -> i32 {foo}
|
|
|
|
/// ```
|
2021-03-13 10:55:50 -06:00
|
|
|
FnDef(FnDefId, Substs),
|
2021-02-28 12:13:37 -06:00
|
|
|
|
|
|
|
/// The pointee of a string slice. Written as `str`.
|
|
|
|
Str,
|
|
|
|
|
|
|
|
/// The never type `!`.
|
|
|
|
Never,
|
|
|
|
|
|
|
|
/// The type of a specific closure.
|
|
|
|
///
|
|
|
|
/// The closure signature is stored in a `FnPtr` type in the first type
|
|
|
|
/// parameter.
|
2021-03-13 12:27:09 -06:00
|
|
|
Closure(ClosureId, Substs),
|
2021-02-28 12:13:37 -06:00
|
|
|
|
|
|
|
/// Represents a foreign type declared in external blocks.
|
2021-03-13 10:23:19 -06:00
|
|
|
ForeignType(ForeignDefId),
|
2021-02-28 12:13:37 -06:00
|
|
|
|
|
|
|
/// A pointer to a function. Written as `fn() -> i32`.
|
|
|
|
///
|
|
|
|
/// For example the type of `bar` here:
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// fn foo() -> i32 { 1 }
|
|
|
|
/// let bar: fn() -> i32 = foo;
|
|
|
|
/// ```
|
2021-02-28 15:12:07 -06:00
|
|
|
Function(FnPointer),
|
2019-11-27 08:46:02 -06:00
|
|
|
|
2021-03-01 07:24:00 -06:00
|
|
|
/// An "alias" type represents some form of type alias, such as:
|
|
|
|
/// - An associated type projection like `<T as Iterator>::Item`
|
|
|
|
/// - `impl Trait` types
|
|
|
|
/// - Named type aliases like `type Foo<X> = Vec<X>`
|
|
|
|
Alias(AliasTy),
|
2020-03-04 16:00:44 -06:00
|
|
|
|
2020-02-07 11:17:23 -06:00
|
|
|
/// A placeholder for a type parameter; for example, `T` in `fn f<T>(x: T)
|
|
|
|
/// {}` when we're type-checking the body of that function. In this
|
|
|
|
/// situation, we know this stands for *some* type, but don't know the exact
|
|
|
|
/// type.
|
2021-03-13 12:47:34 -06:00
|
|
|
Placeholder(PlaceholderIndex),
|
2019-11-27 08:46:02 -06:00
|
|
|
|
2020-02-07 11:17:23 -06:00
|
|
|
/// A bound type variable. This is used in various places: when representing
|
|
|
|
/// some polymorphic type like the type of function `fn f<T>`, the type
|
|
|
|
/// parameters get turned into variables; during trait resolution, inference
|
|
|
|
/// variables get turned into bound variables and back; and in `Dyn` the
|
|
|
|
/// `Self` type is represented with a bound variable as well.
|
2021-03-01 07:24:00 -06:00
|
|
|
BoundVar(BoundVar),
|
2019-11-27 08:46:02 -06:00
|
|
|
|
2020-02-07 11:17:23 -06:00
|
|
|
/// A type variable used during type checking.
|
2021-03-01 05:35:11 -06:00
|
|
|
InferenceVar(InferenceVar, TyVariableKind),
|
2019-11-27 08:46:02 -06:00
|
|
|
|
|
|
|
/// A trait object (`dyn Trait` or bare `Trait` in pre-2018 Rust).
|
|
|
|
///
|
|
|
|
/// The predicates are quantified over the `Self` type, i.e. `Ty::Bound(0)`
|
|
|
|
/// represents the `Self` type inside the bounds. This is currently
|
|
|
|
/// implicit; Chalk has the `Binders` struct to make it explicit, but it
|
|
|
|
/// didn't seem worth the overhead yet.
|
|
|
|
Dyn(Arc<[GenericPredicate]>),
|
|
|
|
|
|
|
|
/// A placeholder for a type which could not be computed; this is propagated
|
|
|
|
/// to avoid useless error messages. Doubles as a placeholder where type
|
|
|
|
/// variables are inserted before type checking, since we want to try to
|
|
|
|
/// infer a better type here anyway -- for the IDE use case, we want to try
|
|
|
|
/// to infer as much as possible even in the presence of type errors.
|
|
|
|
Unknown,
|
|
|
|
}
|
|
|
|
|
2021-03-13 07:44:51 -06:00
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
|
2021-03-14 11:25:29 -05:00
|
|
|
pub struct Ty(Arc<TyKind>);
|
2021-03-13 07:44:51 -06:00
|
|
|
|
|
|
|
impl TyKind {
|
|
|
|
pub fn intern(self, _interner: &Interner) -> Ty {
|
2021-03-14 11:25:29 -05:00
|
|
|
Ty(Arc::new(self))
|
2021-03-13 07:44:51 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Ty {
|
|
|
|
pub fn interned(&self, _interner: &Interner) -> &TyKind {
|
|
|
|
&self.0
|
|
|
|
}
|
2021-03-14 11:25:29 -05:00
|
|
|
|
|
|
|
pub fn interned_mut(&mut self) -> &mut TyKind {
|
|
|
|
Arc::make_mut(&mut self.0)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn into_inner(self) -> TyKind {
|
|
|
|
Arc::try_unwrap(self.0).unwrap_or_else(|a| (*a).clone())
|
|
|
|
}
|
2021-03-13 07:44:51 -06:00
|
|
|
}
|
|
|
|
|
2019-11-27 08:46:02 -06:00
|
|
|
/// A list of substitutions for generic parameters.
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
|
|
|
|
pub struct Substs(Arc<[Ty]>);
|
|
|
|
|
|
|
|
impl TypeWalk for Substs {
|
|
|
|
fn walk(&self, f: &mut impl FnMut(&Ty)) {
|
|
|
|
for t in self.0.iter() {
|
|
|
|
t.walk(f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-05 11:24:18 -05:00
|
|
|
fn walk_mut_binders(
|
|
|
|
&mut self,
|
|
|
|
f: &mut impl FnMut(&mut Ty, DebruijnIndex),
|
|
|
|
binders: DebruijnIndex,
|
|
|
|
) {
|
2019-11-27 08:46:02 -06:00
|
|
|
for t in make_mut_slice(&mut self.0) {
|
|
|
|
t.walk_mut_binders(f, binders);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Substs {
|
|
|
|
pub fn empty() -> Substs {
|
|
|
|
Substs(Arc::new([]))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn single(ty: Ty) -> Substs {
|
|
|
|
Substs(Arc::new([ty]))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn prefix(&self, n: usize) -> Substs {
|
|
|
|
Substs(self.0[..std::cmp::min(self.0.len(), n)].into())
|
|
|
|
}
|
|
|
|
|
2020-03-01 07:31:35 -06:00
|
|
|
pub fn suffix(&self, n: usize) -> Substs {
|
|
|
|
Substs(self.0[self.0.len() - std::cmp::min(self.0.len(), n)..].into())
|
|
|
|
}
|
|
|
|
|
2019-11-27 08:46:02 -06:00
|
|
|
pub fn as_single(&self) -> &Ty {
|
|
|
|
if self.0.len() != 1 {
|
|
|
|
panic!("expected substs of len 1, got {:?}", self);
|
|
|
|
}
|
|
|
|
&self.0[0]
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return Substs that replace each parameter by itself (i.e. `Ty::Param`).
|
2021-03-13 12:47:34 -06:00
|
|
|
pub(crate) fn type_params_for_generics(
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
generic_params: &Generics,
|
|
|
|
) -> Substs {
|
2021-03-13 07:44:51 -06:00
|
|
|
Substs(
|
|
|
|
generic_params
|
|
|
|
.iter()
|
2021-03-13 12:47:34 -06:00
|
|
|
.map(|(id, _)| TyKind::Placeholder(to_placeholder_idx(db, id)).intern(&Interner))
|
2021-03-13 07:44:51 -06:00
|
|
|
.collect(),
|
|
|
|
)
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
2020-02-04 14:33:03 -06:00
|
|
|
/// Return Substs that replace each parameter by itself (i.e. `Ty::Param`).
|
2020-03-13 10:05:46 -05:00
|
|
|
pub fn type_params(db: &dyn HirDatabase, def: impl Into<GenericDefId>) -> Substs {
|
|
|
|
let params = generics(db.upcast(), def.into());
|
2021-03-13 12:47:34 -06:00
|
|
|
Substs::type_params_for_generics(db, ¶ms)
|
2020-02-04 14:33:03 -06:00
|
|
|
}
|
|
|
|
|
2019-11-27 08:46:02 -06:00
|
|
|
/// Return Substs that replace each parameter by a bound variable.
|
2020-04-17 15:48:29 -05:00
|
|
|
pub(crate) fn bound_vars(generic_params: &Generics, debruijn: DebruijnIndex) -> Substs {
|
2020-04-05 11:24:18 -05:00
|
|
|
Substs(
|
|
|
|
generic_params
|
|
|
|
.iter()
|
|
|
|
.enumerate()
|
2021-03-13 07:44:51 -06:00
|
|
|
.map(|(idx, _)| TyKind::BoundVar(BoundVar::new(debruijn, idx)).intern(&Interner))
|
2020-04-05 11:24:18 -05:00
|
|
|
.collect(),
|
|
|
|
)
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
pub fn build_for_def(db: &dyn HirDatabase, def: impl Into<GenericDefId>) -> SubstsBuilder {
|
2019-11-27 08:46:02 -06:00
|
|
|
let def = def.into();
|
2020-03-13 10:05:46 -05:00
|
|
|
let params = generics(db.upcast(), def);
|
2019-12-07 06:05:05 -06:00
|
|
|
let param_count = params.len();
|
2019-11-27 08:46:02 -06:00
|
|
|
Substs::builder(param_count)
|
|
|
|
}
|
|
|
|
|
2019-12-07 04:50:36 -06:00
|
|
|
pub(crate) fn build_for_generics(generic_params: &Generics) -> SubstsBuilder {
|
2019-12-07 06:05:05 -06:00
|
|
|
Substs::builder(generic_params.len())
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn builder(param_count: usize) -> SubstsBuilder {
|
|
|
|
SubstsBuilder { vec: Vec::with_capacity(param_count), param_count }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2019-11-27 08:46:02 -06:00
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct SubstsBuilder {
|
|
|
|
vec: Vec<Ty>,
|
|
|
|
param_count: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl SubstsBuilder {
|
|
|
|
pub fn build(self) -> Substs {
|
|
|
|
assert_eq!(self.vec.len(), self.param_count);
|
|
|
|
Substs(self.vec.into())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn push(mut self, ty: Ty) -> Self {
|
|
|
|
self.vec.push(ty);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
fn remaining(&self) -> usize {
|
|
|
|
self.param_count - self.vec.len()
|
|
|
|
}
|
|
|
|
|
2020-04-05 11:24:18 -05:00
|
|
|
pub fn fill_with_bound_vars(self, debruijn: DebruijnIndex, starting_from: usize) -> Self {
|
2021-03-13 07:44:51 -06:00
|
|
|
self.fill(
|
|
|
|
(starting_from..)
|
|
|
|
.map(|idx| TyKind::BoundVar(BoundVar::new(debruijn, idx)).intern(&Interner)),
|
|
|
|
)
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn fill_with_unknown(self) -> Self {
|
2021-03-13 07:44:51 -06:00
|
|
|
self.fill(iter::repeat(TyKind::Unknown.intern(&Interner)))
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn fill(mut self, filler: impl Iterator<Item = Ty>) -> Self {
|
|
|
|
self.vec.extend(filler.take(self.remaining()));
|
|
|
|
assert_eq!(self.remaining(), 0);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn use_parent_substs(mut self, parent_substs: &Substs) -> Self {
|
|
|
|
assert!(self.vec.is_empty());
|
|
|
|
assert!(parent_substs.len() <= self.param_count);
|
|
|
|
self.vec.extend(parent_substs.iter().cloned());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Deref for Substs {
|
|
|
|
type Target = [Ty];
|
|
|
|
|
|
|
|
fn deref(&self) -> &[Ty] {
|
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-04 16:00:44 -06:00
|
|
|
#[derive(Copy, Clone, PartialEq, Eq, Debug, Hash)]
|
2020-01-25 16:38:33 -06:00
|
|
|
pub struct Binders<T> {
|
|
|
|
pub num_binders: usize,
|
|
|
|
pub value: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Binders<T> {
|
2020-02-02 06:04:22 -06:00
|
|
|
pub fn new(num_binders: usize, value: T) -> Self {
|
|
|
|
Self { num_binders, value }
|
|
|
|
}
|
2020-04-26 09:56:25 -05:00
|
|
|
|
|
|
|
pub fn as_ref(&self) -> Binders<&T> {
|
|
|
|
Binders { num_binders: self.num_binders, value: &self.value }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn map<U>(self, f: impl FnOnce(T) -> U) -> Binders<U> {
|
|
|
|
Binders { num_binders: self.num_binders, value: f(self.value) }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn filter_map<U>(self, f: impl FnOnce(T) -> Option<U>) -> Option<Binders<U>> {
|
|
|
|
Some(Binders { num_binders: self.num_binders, value: f(self.value)? })
|
|
|
|
}
|
2020-01-25 16:38:33 -06:00
|
|
|
}
|
|
|
|
|
2020-02-21 14:49:02 -06:00
|
|
|
impl<T: Clone> Binders<&T> {
|
|
|
|
pub fn cloned(&self) -> Binders<T> {
|
|
|
|
Binders { num_binders: self.num_binders, value: self.value.clone() }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-25 16:38:33 -06:00
|
|
|
impl<T: TypeWalk> Binders<T> {
|
|
|
|
/// Substitutes all variables.
|
|
|
|
pub fn subst(self, subst: &Substs) -> T {
|
|
|
|
assert_eq!(subst.len(), self.num_binders);
|
|
|
|
self.value.subst_bound_vars(subst)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Substitutes just a prefix of the variables (shifting the rest).
|
|
|
|
pub fn subst_prefix(self, subst: &Substs) -> Binders<T> {
|
|
|
|
assert!(subst.len() < self.num_binders);
|
|
|
|
Binders::new(self.num_binders - subst.len(), self.value.subst_bound_vars(subst))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-04 16:00:44 -06:00
|
|
|
impl<T: TypeWalk> TypeWalk for Binders<T> {
|
|
|
|
fn walk(&self, f: &mut impl FnMut(&Ty)) {
|
|
|
|
self.value.walk(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn walk_mut_binders(
|
|
|
|
&mut self,
|
|
|
|
f: &mut impl FnMut(&mut Ty, DebruijnIndex),
|
|
|
|
binders: DebruijnIndex,
|
|
|
|
) {
|
|
|
|
self.value.walk_mut_binders(f, binders.shifted_in())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-27 08:46:02 -06:00
|
|
|
/// A trait with type parameters. This includes the `Self`, so this represents a concrete type implementing the trait.
|
|
|
|
/// Name to be bikeshedded: TraitBound? TraitImplements?
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
|
|
|
|
pub struct TraitRef {
|
|
|
|
/// FIXME name?
|
|
|
|
pub trait_: TraitId,
|
|
|
|
pub substs: Substs,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TraitRef {
|
|
|
|
pub fn self_ty(&self) -> &Ty {
|
|
|
|
&self.substs[0]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TypeWalk for TraitRef {
|
|
|
|
fn walk(&self, f: &mut impl FnMut(&Ty)) {
|
|
|
|
self.substs.walk(f);
|
|
|
|
}
|
|
|
|
|
2020-04-05 11:24:18 -05:00
|
|
|
fn walk_mut_binders(
|
|
|
|
&mut self,
|
|
|
|
f: &mut impl FnMut(&mut Ty, DebruijnIndex),
|
|
|
|
binders: DebruijnIndex,
|
|
|
|
) {
|
2019-11-27 08:46:02 -06:00
|
|
|
self.substs.walk_mut_binders(f, binders);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Like `generics::WherePredicate`, but with resolved types: A condition on the
|
|
|
|
/// parameters of a generic item.
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub enum GenericPredicate {
|
|
|
|
/// The given trait needs to be implemented for its type parameters.
|
|
|
|
Implemented(TraitRef),
|
|
|
|
/// An associated type bindings like in `Iterator<Item = T>`.
|
|
|
|
Projection(ProjectionPredicate),
|
|
|
|
/// We couldn't resolve the trait reference. (If some type parameters can't
|
|
|
|
/// be resolved, they will just be Unknown).
|
|
|
|
Error,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl GenericPredicate {
|
|
|
|
pub fn is_error(&self) -> bool {
|
2020-06-27 20:02:03 -05:00
|
|
|
matches!(self, GenericPredicate::Error)
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_implemented(&self) -> bool {
|
2020-06-27 20:02:03 -05:00
|
|
|
matches!(self, GenericPredicate::Implemented(_))
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
pub fn trait_ref(&self, db: &dyn HirDatabase) -> Option<TraitRef> {
|
2019-11-27 08:46:02 -06:00
|
|
|
match self {
|
|
|
|
GenericPredicate::Implemented(tr) => Some(tr.clone()),
|
|
|
|
GenericPredicate::Projection(proj) => Some(proj.projection_ty.trait_ref(db)),
|
|
|
|
GenericPredicate::Error => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TypeWalk for GenericPredicate {
|
|
|
|
fn walk(&self, f: &mut impl FnMut(&Ty)) {
|
|
|
|
match self {
|
|
|
|
GenericPredicate::Implemented(trait_ref) => trait_ref.walk(f),
|
|
|
|
GenericPredicate::Projection(projection_pred) => projection_pred.walk(f),
|
|
|
|
GenericPredicate::Error => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-05 11:24:18 -05:00
|
|
|
fn walk_mut_binders(
|
|
|
|
&mut self,
|
|
|
|
f: &mut impl FnMut(&mut Ty, DebruijnIndex),
|
|
|
|
binders: DebruijnIndex,
|
|
|
|
) {
|
2019-11-27 08:46:02 -06:00
|
|
|
match self {
|
|
|
|
GenericPredicate::Implemented(trait_ref) => trait_ref.walk_mut_binders(f, binders),
|
|
|
|
GenericPredicate::Projection(projection_pred) => {
|
|
|
|
projection_pred.walk_mut_binders(f, binders)
|
|
|
|
}
|
|
|
|
GenericPredicate::Error => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Basically a claim (currently not validated / checked) that the contained
|
|
|
|
/// type / trait ref contains no inference variables; any inference variables it
|
2020-06-28 14:17:27 -05:00
|
|
|
/// contained have been replaced by bound variables, and `kinds` tells us how
|
|
|
|
/// many there are and whether they were normal or float/int variables. This is
|
|
|
|
/// used to erase irrelevant differences between types before using them in
|
|
|
|
/// queries.
|
2019-11-27 08:46:02 -06:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct Canonical<T> {
|
|
|
|
pub value: T,
|
2021-03-01 06:54:17 -06:00
|
|
|
pub kinds: Arc<[TyVariableKind]>,
|
2020-06-28 14:17:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Canonical<T> {
|
2021-03-01 06:54:17 -06:00
|
|
|
pub fn new(value: T, kinds: impl IntoIterator<Item = TyVariableKind>) -> Self {
|
2020-06-28 14:17:27 -05:00
|
|
|
Self { value, kinds: kinds.into_iter().collect() }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
params_and_return: Arc::clone(&fn_ptr.substs.0),
|
|
|
|
is_varargs: fn_ptr.sig.variadic,
|
|
|
|
}
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
2021-02-28 15:12:07 -06:00
|
|
|
pub fn from_substs(substs: &Substs) -> CallableSig {
|
|
|
|
CallableSig { params_and_return: Arc::clone(&substs.0), is_varargs: false }
|
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-02-28 15:12:07 -06:00
|
|
|
impl TypeWalk for CallableSig {
|
2019-11-27 08:46:02 -06:00
|
|
|
fn walk(&self, f: &mut impl FnMut(&Ty)) {
|
|
|
|
for t in self.params_and_return.iter() {
|
|
|
|
t.walk(f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-05 11:24:18 -05:00
|
|
|
fn walk_mut_binders(
|
|
|
|
&mut self,
|
|
|
|
f: &mut impl FnMut(&mut Ty, DebruijnIndex),
|
|
|
|
binders: DebruijnIndex,
|
|
|
|
) {
|
2019-11-27 08:46:02 -06:00
|
|
|
for t in make_mut_slice(&mut self.params_and_return) {
|
|
|
|
t.walk_mut_binders(f, binders);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Ty {
|
|
|
|
pub fn unit() -> Self {
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Tuple(0, Substs::empty()).intern(&Interner)
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
2021-02-28 12:13:37 -06:00
|
|
|
|
2021-03-01 14:57:39 -06:00
|
|
|
pub fn adt_ty(adt: hir_def::AdtId, substs: Substs) -> Ty {
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Adt(AdtId(adt), substs).intern(&Interner)
|
2021-03-01 14:57:39 -06:00
|
|
|
}
|
|
|
|
|
2021-02-28 15:12:07 -06:00
|
|
|
pub fn fn_ptr(sig: CallableSig) -> Self {
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Function(FnPointer {
|
2021-02-28 15:12:07 -06:00
|
|
|
num_args: sig.params().len(),
|
2021-03-14 10:30:02 -05:00
|
|
|
sig: FnSig { abi: (), safety: Safety::Safe, variadic: sig.is_varargs },
|
2021-02-28 12:13:37 -06:00
|
|
|
substs: Substs(sig.params_and_return),
|
2021-02-28 15:12:07 -06:00
|
|
|
})
|
2021-03-13 07:44:51 -06:00
|
|
|
.intern(&Interner)
|
2020-05-08 15:12:16 -05:00
|
|
|
}
|
2021-02-28 12:13:37 -06:00
|
|
|
|
2021-02-11 12:52:33 -06:00
|
|
|
pub fn builtin(builtin: BuiltinType) -> Self {
|
2021-02-28 12:13:37 -06:00
|
|
|
match builtin {
|
2021-03-13 07:44:51 -06:00
|
|
|
BuiltinType::Char => TyKind::Scalar(Scalar::Char).intern(&Interner),
|
|
|
|
BuiltinType::Bool => TyKind::Scalar(Scalar::Bool).intern(&Interner),
|
|
|
|
BuiltinType::Str => TyKind::Str.intern(&Interner),
|
|
|
|
BuiltinType::Int(t) => {
|
|
|
|
TyKind::Scalar(Scalar::Int(primitive::int_ty_from_builtin(t))).intern(&Interner)
|
|
|
|
}
|
|
|
|
BuiltinType::Uint(t) => {
|
|
|
|
TyKind::Scalar(Scalar::Uint(primitive::uint_ty_from_builtin(t))).intern(&Interner)
|
|
|
|
}
|
|
|
|
BuiltinType::Float(t) => {
|
|
|
|
TyKind::Scalar(Scalar::Float(primitive::float_ty_from_builtin(t))).intern(&Interner)
|
|
|
|
}
|
2021-02-28 12:13:37 -06:00
|
|
|
}
|
2021-02-11 12:52:33 -06:00
|
|
|
}
|
2019-11-27 08:46:02 -06:00
|
|
|
|
|
|
|
pub fn as_reference(&self) -> Option<(&Ty, Mutability)> {
|
2021-03-13 07:44:51 -06:00
|
|
|
match self.interned(&Interner) {
|
2021-03-14 11:40:55 -05:00
|
|
|
TyKind::Ref(mutability, ty) => Some((ty, *mutability)),
|
2019-11-27 08:46:02 -06:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-28 14:42:22 -05:00
|
|
|
pub fn as_reference_or_ptr(&self) -> Option<(&Ty, Rawness, Mutability)> {
|
2021-03-13 07:44:51 -06:00
|
|
|
match self.interned(&Interner) {
|
2021-03-14 11:40:55 -05:00
|
|
|
TyKind::Ref(mutability, ty) => Some((ty, Rawness::Ref, *mutability)),
|
|
|
|
TyKind::Raw(mutability, ty) => Some((ty, Rawness::RawPtr, *mutability)),
|
2020-05-28 14:42:22 -05:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-14 18:06:57 -05:00
|
|
|
pub fn strip_references(&self) -> &Ty {
|
|
|
|
let mut t: &Ty = self;
|
|
|
|
|
2021-03-14 11:40:55 -05:00
|
|
|
while let TyKind::Ref(_mutability, ty) = t.interned(&Interner) {
|
|
|
|
t = ty;
|
2020-04-14 18:06:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
t
|
|
|
|
}
|
|
|
|
|
2021-03-01 14:57:39 -06:00
|
|
|
pub fn as_adt(&self) -> Option<(hir_def::AdtId, &Substs)> {
|
2021-03-13 07:44:51 -06:00
|
|
|
match self.interned(&Interner) {
|
|
|
|
TyKind::Adt(AdtId(adt), parameters) => Some((*adt, parameters)),
|
2019-11-27 08:46:02 -06:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn as_tuple(&self) -> Option<&Substs> {
|
2021-03-13 07:44:51 -06:00
|
|
|
match self.interned(&Interner) {
|
|
|
|
TyKind::Tuple(_, substs) => Some(substs),
|
2021-02-28 12:13:37 -06:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-13 10:55:50 -06:00
|
|
|
pub fn as_generic_def(&self, db: &dyn HirDatabase) -> Option<GenericDefId> {
|
2021-03-13 07:44:51 -06:00
|
|
|
match *self.interned(&Interner) {
|
|
|
|
TyKind::Adt(AdtId(adt), ..) => Some(adt.into()),
|
2021-03-13 10:55:50 -06:00
|
|
|
TyKind::FnDef(callable, ..) => {
|
|
|
|
Some(db.lookup_intern_callable_def(callable.into()).into())
|
|
|
|
}
|
2021-03-13 10:36:07 -06:00
|
|
|
TyKind::AssociatedType(type_alias, ..) => Some(from_assoc_type_id(type_alias).into()),
|
2021-03-13 10:23:19 -06:00
|
|
|
TyKind::ForeignType(type_alias, ..) => Some(from_foreign_def_id(type_alias).into()),
|
2019-11-27 08:46:02 -06:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-08 10:36:11 -05:00
|
|
|
pub fn is_never(&self) -> bool {
|
2021-03-13 07:44:51 -06:00
|
|
|
matches!(self.interned(&Interner), TyKind::Never)
|
2020-05-08 10:36:11 -05:00
|
|
|
}
|
|
|
|
|
2021-01-01 13:45:49 -06:00
|
|
|
pub fn is_unknown(&self) -> bool {
|
2021-03-13 07:44:51 -06:00
|
|
|
matches!(self.interned(&Interner), TyKind::Unknown)
|
2021-01-01 13:45:49 -06:00
|
|
|
}
|
|
|
|
|
2021-02-28 12:13:37 -06:00
|
|
|
pub fn equals_ctor(&self, other: &Ty) -> bool {
|
2021-03-13 07:44:51 -06:00
|
|
|
match (self.interned(&Interner), other.interned(&Interner)) {
|
|
|
|
(TyKind::Adt(adt, ..), TyKind::Adt(adt2, ..)) => adt == adt2,
|
|
|
|
(TyKind::Slice(_), TyKind::Slice(_)) | (TyKind::Array(_), TyKind::Array(_)) => true,
|
|
|
|
(TyKind::FnDef(def_id, ..), TyKind::FnDef(def_id2, ..)) => def_id == def_id2,
|
|
|
|
(TyKind::OpaqueType(ty_id, ..), TyKind::OpaqueType(ty_id2, ..)) => ty_id == ty_id2,
|
2021-03-13 10:23:19 -06:00
|
|
|
(TyKind::AssociatedType(ty_id, ..), TyKind::AssociatedType(ty_id2, ..)) => {
|
|
|
|
ty_id == ty_id2
|
|
|
|
}
|
|
|
|
(TyKind::ForeignType(ty_id, ..), TyKind::ForeignType(ty_id2, ..)) => ty_id == ty_id2,
|
2021-03-13 12:27:09 -06:00
|
|
|
(TyKind::Closure(id1, _), TyKind::Closure(id2, _)) => id1 == id2,
|
2021-03-13 07:44:51 -06:00
|
|
|
(TyKind::Ref(mutability, ..), TyKind::Ref(mutability2, ..))
|
|
|
|
| (TyKind::Raw(mutability, ..), TyKind::Raw(mutability2, ..)) => {
|
|
|
|
mutability == mutability2
|
|
|
|
}
|
2021-02-28 12:13:37 -06:00
|
|
|
(
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Function(FnPointer { num_args, sig, .. }),
|
|
|
|
TyKind::Function(FnPointer { num_args: num_args2, sig: sig2, .. }),
|
2021-02-28 15:12:07 -06:00
|
|
|
) => num_args == num_args2 && sig == sig2,
|
2021-03-13 07:44:51 -06:00
|
|
|
(TyKind::Tuple(cardinality, _), TyKind::Tuple(cardinality2, _)) => {
|
|
|
|
cardinality == cardinality2
|
|
|
|
}
|
|
|
|
(TyKind::Str, TyKind::Str) | (TyKind::Never, TyKind::Never) => true,
|
|
|
|
(TyKind::Scalar(scalar), TyKind::Scalar(scalar2)) => scalar == scalar2,
|
2021-02-28 12:13:37 -06:00
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-21 12:05:27 -06:00
|
|
|
/// If this is a `dyn Trait` type, this returns the `Trait` part.
|
|
|
|
pub fn dyn_trait_ref(&self) -> Option<&TraitRef> {
|
2021-03-13 07:44:51 -06:00
|
|
|
match self.interned(&Interner) {
|
|
|
|
TyKind::Dyn(bounds) => bounds.get(0).and_then(|b| match b {
|
2020-02-21 12:05:27 -06:00
|
|
|
GenericPredicate::Implemented(trait_ref) => Some(trait_ref),
|
|
|
|
_ => None,
|
|
|
|
}),
|
|
|
|
_ => None,
|
|
|
|
}
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
2020-06-11 15:06:58 -05:00
|
|
|
/// If this is a `dyn Trait`, returns that trait.
|
|
|
|
pub fn dyn_trait(&self) -> Option<TraitId> {
|
|
|
|
self.dyn_trait_ref().map(|it| it.trait_)
|
|
|
|
}
|
|
|
|
|
2019-11-27 08:46:02 -06:00
|
|
|
fn builtin_deref(&self) -> Option<Ty> {
|
2021-03-13 07:44:51 -06:00
|
|
|
match self.interned(&Interner) {
|
2021-03-14 11:40:55 -05:00
|
|
|
TyKind::Ref(.., ty) => Some(ty.clone()),
|
|
|
|
TyKind::Raw(.., ty) => Some(ty.clone()),
|
2019-11-27 08:46:02 -06:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-13 10:55:50 -06:00
|
|
|
pub fn callable_def(&self, db: &dyn HirDatabase) -> Option<CallableDefId> {
|
2021-03-13 07:44:51 -06:00
|
|
|
match self.interned(&Interner) {
|
2021-03-13 10:55:50 -06:00
|
|
|
&TyKind::FnDef(def, ..) => Some(db.lookup_intern_callable_def(def.into())),
|
2021-01-28 12:06:33 -06:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-13 10:55:50 -06:00
|
|
|
pub fn as_fn_def(&self, db: &dyn HirDatabase) -> Option<FunctionId> {
|
|
|
|
if let Some(CallableDefId::FunctionId(func)) = self.callable_def(db) {
|
|
|
|
Some(func)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-28 15:12:07 -06:00
|
|
|
pub fn callable_sig(&self, db: &dyn HirDatabase) -> Option<CallableSig> {
|
2021-03-13 07:44:51 -06:00
|
|
|
match self.interned(&Interner) {
|
|
|
|
TyKind::Function(fn_ptr) => Some(CallableSig::from_fn_ptr(fn_ptr)),
|
|
|
|
TyKind::FnDef(def, parameters) => {
|
2021-03-13 10:55:50 -06:00
|
|
|
let callable_def = db.lookup_intern_callable_def((*def).into());
|
|
|
|
let sig = db.callable_item_signature(callable_def);
|
2021-02-28 12:13:37 -06:00
|
|
|
Some(sig.subst(¶meters))
|
|
|
|
}
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Closure(.., substs) => {
|
2021-02-28 15:12:07 -06:00
|
|
|
let sig_param = &substs[0];
|
2021-02-28 12:13:37 -06:00
|
|
|
sig_param.callable_sig(db)
|
|
|
|
}
|
2019-11-27 08:46:02 -06:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the type parameters of this type if it has some (i.e. is an ADT
|
|
|
|
/// or function); so if `self` is `Option<u32>`, this returns the `u32`.
|
2021-02-28 12:13:37 -06:00
|
|
|
pub fn substs(&self) -> Option<&Substs> {
|
2021-03-13 07:44:51 -06:00
|
|
|
match self.interned(&Interner) {
|
|
|
|
TyKind::Adt(_, substs)
|
|
|
|
| TyKind::FnDef(_, substs)
|
|
|
|
| TyKind::Function(FnPointer { substs, .. })
|
|
|
|
| TyKind::Tuple(_, substs)
|
|
|
|
| TyKind::OpaqueType(_, substs)
|
|
|
|
| TyKind::AssociatedType(_, substs)
|
|
|
|
| TyKind::Closure(.., substs) => Some(substs),
|
2021-02-28 12:13:37 -06:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-14 11:40:55 -05:00
|
|
|
fn substs_mut(&mut self) -> Option<&mut Substs> {
|
2021-03-14 11:25:29 -05:00
|
|
|
match self.interned_mut() {
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Adt(_, substs)
|
|
|
|
| TyKind::FnDef(_, substs)
|
|
|
|
| TyKind::Function(FnPointer { substs, .. })
|
|
|
|
| TyKind::Tuple(_, substs)
|
|
|
|
| TyKind::OpaqueType(_, substs)
|
|
|
|
| TyKind::AssociatedType(_, substs)
|
|
|
|
| TyKind::Closure(.., substs) => Some(substs),
|
2019-11-27 08:46:02 -06:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-11 15:06:58 -05:00
|
|
|
pub fn impl_trait_bounds(&self, db: &dyn HirDatabase) -> Option<Vec<GenericPredicate>> {
|
2021-03-13 07:44:51 -06:00
|
|
|
match self.interned(&Interner) {
|
|
|
|
TyKind::OpaqueType(opaque_ty_id, ..) => {
|
2021-03-13 13:05:47 -06:00
|
|
|
match db.lookup_intern_impl_trait_id((*opaque_ty_id).into()) {
|
|
|
|
ImplTraitId::AsyncBlockTypeImplTrait(def, _expr) => {
|
2021-01-22 11:09:55 -06:00
|
|
|
let krate = def.module(db.upcast()).krate();
|
2020-09-11 12:03:28 -05:00
|
|
|
if let Some(future_trait) = db
|
2020-09-10 07:01:23 -05:00
|
|
|
.lang_item(krate, "future_trait".into())
|
|
|
|
.and_then(|item| item.as_trait())
|
|
|
|
{
|
2020-09-11 12:03:28 -05:00
|
|
|
// This is only used by type walking.
|
|
|
|
// Parameters will be walked outside, and projection predicate is not used.
|
|
|
|
// So just provide the Future trait.
|
|
|
|
let impl_bound = GenericPredicate::Implemented(TraitRef {
|
|
|
|
trait_: future_trait,
|
|
|
|
substs: Substs::empty(),
|
2020-09-10 07:01:23 -05:00
|
|
|
});
|
2020-09-11 12:03:28 -05:00
|
|
|
Some(vec![impl_bound])
|
2020-09-10 07:01:23 -05:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2021-03-13 13:05:47 -06:00
|
|
|
ImplTraitId::ReturnTypeImplTrait(..) => None,
|
2020-09-10 07:01:23 -05:00
|
|
|
}
|
|
|
|
}
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Alias(AliasTy::Opaque(opaque_ty)) => {
|
2021-03-13 13:05:47 -06:00
|
|
|
let predicates = match db.lookup_intern_impl_trait_id(opaque_ty.opaque_ty_id.into())
|
|
|
|
{
|
|
|
|
ImplTraitId::ReturnTypeImplTrait(func, idx) => {
|
2020-06-11 12:17:32 -05:00
|
|
|
db.return_type_impl_traits(func).map(|it| {
|
|
|
|
let data = (*it)
|
|
|
|
.as_ref()
|
|
|
|
.map(|rpit| rpit.impl_traits[idx as usize].bounds.clone());
|
2021-03-14 10:33:27 -05:00
|
|
|
data.subst(&opaque_ty.substitution)
|
2020-06-11 12:17:32 -05:00
|
|
|
})
|
|
|
|
}
|
2020-09-10 07:01:23 -05:00
|
|
|
// It always has an parameter for Future::Output type.
|
2021-03-13 13:05:47 -06:00
|
|
|
ImplTraitId::AsyncBlockTypeImplTrait(..) => unreachable!(),
|
2020-06-11 12:17:32 -05:00
|
|
|
};
|
|
|
|
|
2020-06-11 15:06:58 -05:00
|
|
|
predicates.map(|it| it.value)
|
2020-06-11 12:17:32 -05:00
|
|
|
}
|
2021-03-13 12:47:34 -06:00
|
|
|
TyKind::Placeholder(idx) => {
|
|
|
|
let id = from_placeholder_idx(db, *idx);
|
2020-06-11 12:17:32 -05:00
|
|
|
let generic_params = db.generic_params(id.parent);
|
|
|
|
let param_data = &generic_params.types[id.local_id];
|
|
|
|
match param_data.provenance {
|
2020-06-11 15:06:58 -05:00
|
|
|
hir_def::generics::TypeParamProvenance::ArgumentImplTrait => {
|
|
|
|
let predicates = db
|
2021-03-13 12:47:34 -06:00
|
|
|
.generic_predicates_for_param(id)
|
2020-06-11 15:06:58 -05:00
|
|
|
.into_iter()
|
|
|
|
.map(|pred| pred.value.clone())
|
|
|
|
.collect_vec();
|
|
|
|
|
|
|
|
Some(predicates)
|
|
|
|
}
|
2020-06-11 12:17:32 -05:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn associated_type_parent_trait(&self, db: &dyn HirDatabase) -> Option<TraitId> {
|
2021-03-13 07:44:51 -06:00
|
|
|
match self.interned(&Interner) {
|
2021-03-13 10:36:07 -06:00
|
|
|
TyKind::AssociatedType(id, ..) => {
|
|
|
|
match from_assoc_type_id(*id).lookup(db.upcast()).container {
|
2020-06-11 12:17:32 -05:00
|
|
|
AssocContainerId::TraitId(trait_id) => Some(trait_id),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Alias(AliasTy::Projection(projection_ty)) => {
|
2021-03-14 10:30:02 -05:00
|
|
|
match from_assoc_type_id(projection_ty.associated_ty_id)
|
|
|
|
.lookup(db.upcast())
|
|
|
|
.container
|
2021-03-13 10:36:07 -06:00
|
|
|
{
|
2020-06-11 15:06:58 -05:00
|
|
|
AssocContainerId::TraitId(trait_id) => Some(trait_id),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
2020-06-11 12:17:32 -05:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// This allows walking structures that contain types to do something with those
|
|
|
|
/// types, similar to Chalk's `Fold` trait.
|
|
|
|
pub trait TypeWalk {
|
|
|
|
fn walk(&self, f: &mut impl FnMut(&Ty));
|
|
|
|
fn walk_mut(&mut self, f: &mut impl FnMut(&mut Ty)) {
|
2020-04-05 11:24:18 -05:00
|
|
|
self.walk_mut_binders(&mut |ty, _binders| f(ty), DebruijnIndex::INNERMOST);
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
/// Walk the type, counting entered binders.
|
|
|
|
///
|
2021-03-13 07:44:51 -06:00
|
|
|
/// `TyKind::Bound` variables use DeBruijn indexing, which means that 0 refers
|
2019-11-27 08:46:02 -06:00
|
|
|
/// to the innermost binder, 1 to the next, etc.. So when we want to
|
|
|
|
/// substitute a certain bound variable, we can't just walk the whole type
|
|
|
|
/// and blindly replace each instance of a certain index; when we 'enter'
|
|
|
|
/// things that introduce new bound variables, we have to keep track of
|
|
|
|
/// that. Currently, the only thing that introduces bound variables on our
|
2021-03-13 07:44:51 -06:00
|
|
|
/// side are `TyKind::Dyn` and `TyKind::Opaque`, which each introduce a bound
|
2019-11-27 08:46:02 -06:00
|
|
|
/// variable for the self type.
|
2020-04-05 11:24:18 -05:00
|
|
|
fn walk_mut_binders(
|
|
|
|
&mut self,
|
|
|
|
f: &mut impl FnMut(&mut Ty, DebruijnIndex),
|
|
|
|
binders: DebruijnIndex,
|
|
|
|
);
|
|
|
|
|
|
|
|
fn fold_binders(
|
|
|
|
mut self,
|
|
|
|
f: &mut impl FnMut(Ty, DebruijnIndex) -> Ty,
|
|
|
|
binders: DebruijnIndex,
|
|
|
|
) -> Self
|
2020-02-21 14:49:02 -06:00
|
|
|
where
|
|
|
|
Self: Sized,
|
|
|
|
{
|
|
|
|
self.walk_mut_binders(
|
|
|
|
&mut |ty_mut, binders| {
|
2021-03-14 11:25:29 -05:00
|
|
|
let ty = mem::replace(ty_mut, TyKind::Unknown.intern(&Interner));
|
2020-02-21 14:49:02 -06:00
|
|
|
*ty_mut = f(ty, binders);
|
|
|
|
},
|
|
|
|
binders,
|
|
|
|
);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2019-11-27 08:46:02 -06:00
|
|
|
fn fold(mut self, f: &mut impl FnMut(Ty) -> Ty) -> Self
|
|
|
|
where
|
|
|
|
Self: Sized,
|
|
|
|
{
|
|
|
|
self.walk_mut(&mut |ty_mut| {
|
2021-03-14 11:25:29 -05:00
|
|
|
let ty = mem::replace(ty_mut, TyKind::Unknown.intern(&Interner));
|
2019-11-27 08:46:02 -06:00
|
|
|
*ty_mut = f(ty);
|
|
|
|
});
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2021-03-13 07:44:51 -06:00
|
|
|
/// Substitutes `TyKind::Bound` vars with the given substitution.
|
2020-04-05 11:24:18 -05:00
|
|
|
fn subst_bound_vars(self, substs: &Substs) -> Self
|
|
|
|
where
|
|
|
|
Self: Sized,
|
|
|
|
{
|
|
|
|
self.subst_bound_vars_at_depth(substs, DebruijnIndex::INNERMOST)
|
|
|
|
}
|
|
|
|
|
2021-03-13 07:44:51 -06:00
|
|
|
/// Substitutes `TyKind::Bound` vars with the given substitution.
|
2020-04-05 11:24:18 -05:00
|
|
|
fn subst_bound_vars_at_depth(mut self, substs: &Substs, depth: DebruijnIndex) -> Self
|
2019-11-27 08:46:02 -06:00
|
|
|
where
|
|
|
|
Self: Sized,
|
|
|
|
{
|
|
|
|
self.walk_mut_binders(
|
2020-02-18 07:32:19 -06:00
|
|
|
&mut |ty, binders| {
|
2021-03-14 11:25:29 -05:00
|
|
|
if let &mut TyKind::BoundVar(bound) = ty.interned_mut() {
|
2020-04-05 11:24:18 -05:00
|
|
|
if bound.debruijn >= binders {
|
2020-04-23 13:50:14 -05:00
|
|
|
*ty = substs.0[bound.index].clone().shift_bound_vars(binders);
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2020-04-05 11:24:18 -05:00
|
|
|
depth,
|
2019-11-27 08:46:02 -06:00
|
|
|
);
|
|
|
|
self
|
|
|
|
}
|
2020-04-06 10:24:08 -05:00
|
|
|
|
2021-03-13 07:44:51 -06:00
|
|
|
/// Shifts up debruijn indices of `TyKind::Bound` vars by `n`.
|
2020-04-05 11:24:18 -05:00
|
|
|
fn shift_bound_vars(self, n: DebruijnIndex) -> Self
|
2019-11-27 08:46:02 -06:00
|
|
|
where
|
|
|
|
Self: Sized,
|
|
|
|
{
|
2020-02-22 06:14:39 -06:00
|
|
|
self.fold_binders(
|
2021-03-14 11:25:29 -05:00
|
|
|
&mut |ty, binders| match ty.interned(&Interner) {
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::BoundVar(bound) if bound.debruijn >= binders => {
|
|
|
|
TyKind::BoundVar(bound.shifted_in_from(n)).intern(&Interner)
|
2020-02-22 06:14:39 -06:00
|
|
|
}
|
2021-03-13 07:44:51 -06:00
|
|
|
_ => ty,
|
2020-02-22 06:14:39 -06:00
|
|
|
},
|
2020-04-05 11:24:18 -05:00
|
|
|
DebruijnIndex::INNERMOST,
|
2020-02-22 06:14:39 -06:00
|
|
|
)
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TypeWalk for Ty {
|
|
|
|
fn walk(&self, f: &mut impl FnMut(&Ty)) {
|
2021-03-13 07:44:51 -06:00
|
|
|
match self.interned(&Interner) {
|
|
|
|
TyKind::Alias(AliasTy::Projection(p_ty)) => {
|
2021-03-14 10:26:12 -05:00
|
|
|
for t in p_ty.substitution.iter() {
|
2019-11-27 08:46:02 -06:00
|
|
|
t.walk(f);
|
|
|
|
}
|
|
|
|
}
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Alias(AliasTy::Opaque(o_ty)) => {
|
2021-03-14 10:33:27 -05:00
|
|
|
for t in o_ty.substitution.iter() {
|
2021-03-01 07:24:00 -06:00
|
|
|
t.walk(f);
|
|
|
|
}
|
|
|
|
}
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Dyn(predicates) => {
|
2019-11-27 08:46:02 -06:00
|
|
|
for p in predicates.iter() {
|
|
|
|
p.walk(f);
|
|
|
|
}
|
|
|
|
}
|
2021-03-14 11:40:55 -05:00
|
|
|
TyKind::Slice(ty) | TyKind::Array(ty) | TyKind::Ref(_, ty) | TyKind::Raw(_, ty) => {
|
|
|
|
ty.walk(f);
|
|
|
|
}
|
2021-02-28 12:13:37 -06:00
|
|
|
_ => {
|
|
|
|
if let Some(substs) = self.substs() {
|
|
|
|
for t in substs.iter() {
|
|
|
|
t.walk(f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
f(self);
|
|
|
|
}
|
|
|
|
|
2020-04-05 11:24:18 -05:00
|
|
|
fn walk_mut_binders(
|
|
|
|
&mut self,
|
|
|
|
f: &mut impl FnMut(&mut Ty, DebruijnIndex),
|
|
|
|
binders: DebruijnIndex,
|
|
|
|
) {
|
2021-03-14 11:25:29 -05:00
|
|
|
match self.interned_mut() {
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Alias(AliasTy::Projection(p_ty)) => {
|
2021-03-14 10:26:12 -05:00
|
|
|
p_ty.substitution.walk_mut_binders(f, binders);
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Dyn(predicates) => {
|
2019-11-27 08:46:02 -06:00
|
|
|
for p in make_mut_slice(predicates) {
|
2020-04-05 11:24:18 -05:00
|
|
|
p.walk_mut_binders(f, binders.shifted_in());
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
}
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Alias(AliasTy::Opaque(o_ty)) => {
|
2021-03-14 10:33:27 -05:00
|
|
|
o_ty.substitution.walk_mut_binders(f, binders);
|
2020-03-04 16:00:44 -06:00
|
|
|
}
|
2021-03-14 11:40:55 -05:00
|
|
|
TyKind::Slice(ty) | TyKind::Array(ty) | TyKind::Ref(_, ty) | TyKind::Raw(_, ty) => {
|
|
|
|
ty.walk_mut_binders(f, binders);
|
|
|
|
}
|
2021-02-28 12:13:37 -06:00
|
|
|
_ => {
|
|
|
|
if let Some(substs) = self.substs_mut() {
|
|
|
|
substs.walk_mut_binders(f, binders);
|
|
|
|
}
|
|
|
|
}
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
f(self, binders);
|
|
|
|
}
|
|
|
|
}
|
2020-03-04 16:00:44 -06:00
|
|
|
|
|
|
|
impl<T: TypeWalk> TypeWalk for Vec<T> {
|
|
|
|
fn walk(&self, f: &mut impl FnMut(&Ty)) {
|
|
|
|
for t in self {
|
|
|
|
t.walk(f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn walk_mut_binders(
|
|
|
|
&mut self,
|
|
|
|
f: &mut impl FnMut(&mut Ty, DebruijnIndex),
|
|
|
|
binders: DebruijnIndex,
|
|
|
|
) {
|
|
|
|
for t in self {
|
|
|
|
t.walk_mut_binders(f, binders);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[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 {
|
2020-11-02 06:13:32 -06:00
|
|
|
pub(crate) bounds: Binders<Vec<GenericPredicate>>,
|
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(),
|
|
|
|
}
|
|
|
|
}
|