2019-02-23 08:24:07 -06:00
|
|
|
//! Methods for lowering the HIR to types. There are two main cases here:
|
|
|
|
//!
|
|
|
|
//! - Lowering a type reference like `&usize` or `Option<foo::bar::Baz>` to a
|
|
|
|
//! type: The entry point for this is `Ty::from_hir`.
|
|
|
|
//! - Building the type for an item: This happens through the `type_for_def` query.
|
|
|
|
//!
|
|
|
|
//! This usually involves resolving names, collecting generic arguments etc.
|
2019-04-09 15:04:59 -05:00
|
|
|
use std::iter;
|
2019-02-23 08:24:07 -06:00
|
|
|
|
|
|
|
use crate::{
|
2019-03-14 16:03:39 -05:00
|
|
|
Function, Struct, StructField, Enum, EnumVariant, Path,
|
2019-02-24 14:36:49 -06:00
|
|
|
ModuleDef, TypeAlias,
|
2019-02-25 02:21:01 -06:00
|
|
|
Const, Static,
|
2019-02-23 08:24:07 -06:00
|
|
|
HirDatabase,
|
|
|
|
type_ref::TypeRef,
|
|
|
|
name::KnownName,
|
|
|
|
nameres::Namespace,
|
|
|
|
resolve::{Resolver, Resolution},
|
2019-04-14 06:07:45 -05:00
|
|
|
path::{PathSegment, GenericArg},
|
|
|
|
generics::{GenericParams, HasGenericParams},
|
2019-03-26 17:07:26 -05:00
|
|
|
adt::VariantDef, Trait
|
2019-02-23 08:24:07 -06:00
|
|
|
};
|
2019-03-26 17:07:26 -05:00
|
|
|
use super::{Ty, primitive, FnSig, Substs, TypeCtor, TraitRef};
|
2019-02-23 08:24:07 -06:00
|
|
|
|
|
|
|
impl Ty {
|
|
|
|
pub(crate) fn from_hir(db: &impl HirDatabase, resolver: &Resolver, type_ref: &TypeRef) -> Self {
|
|
|
|
match type_ref {
|
2019-03-21 16:20:03 -05:00
|
|
|
TypeRef::Never => Ty::simple(TypeCtor::Never),
|
2019-02-23 08:24:07 -06:00
|
|
|
TypeRef::Tuple(inner) => {
|
|
|
|
let inner_tys =
|
|
|
|
inner.iter().map(|tr| Ty::from_hir(db, resolver, tr)).collect::<Vec<_>>();
|
2019-05-04 12:07:25 -05:00
|
|
|
Ty::apply(
|
|
|
|
TypeCtor::Tuple { cardinality: inner_tys.len() as u16 },
|
|
|
|
Substs(inner_tys.into()),
|
|
|
|
)
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
TypeRef::Path(path) => Ty::from_hir_path(db, resolver, path),
|
|
|
|
TypeRef::RawPtr(inner, mutability) => {
|
|
|
|
let inner_ty = Ty::from_hir(db, resolver, inner);
|
2019-03-21 16:20:03 -05:00
|
|
|
Ty::apply_one(TypeCtor::RawPtr(*mutability), inner_ty)
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
TypeRef::Array(inner) => {
|
|
|
|
let inner_ty = Ty::from_hir(db, resolver, inner);
|
2019-03-21 16:20:03 -05:00
|
|
|
Ty::apply_one(TypeCtor::Array, inner_ty)
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
TypeRef::Slice(inner) => {
|
|
|
|
let inner_ty = Ty::from_hir(db, resolver, inner);
|
2019-03-21 16:20:03 -05:00
|
|
|
Ty::apply_one(TypeCtor::Slice, inner_ty)
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
TypeRef::Reference(inner, mutability) => {
|
|
|
|
let inner_ty = Ty::from_hir(db, resolver, inner);
|
2019-03-21 16:20:03 -05:00
|
|
|
Ty::apply_one(TypeCtor::Ref(*mutability), inner_ty)
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
TypeRef::Placeholder => Ty::Unknown,
|
|
|
|
TypeRef::Fn(params) => {
|
2019-03-16 11:21:32 -05:00
|
|
|
let inner_tys =
|
2019-02-23 08:24:07 -06:00
|
|
|
params.iter().map(|tr| Ty::from_hir(db, resolver, tr)).collect::<Vec<_>>();
|
2019-03-16 12:14:41 -05:00
|
|
|
let sig = Substs(inner_tys.into());
|
2019-05-04 12:07:25 -05:00
|
|
|
Ty::apply(TypeCtor::FnPtr { num_args: sig.len() as u16 - 1 }, sig)
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
TypeRef::Error => Ty::Unknown,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn from_hir_path(db: &impl HirDatabase, resolver: &Resolver, path: &Path) -> Self {
|
|
|
|
if let Some(name) = path.as_ident() {
|
2019-03-23 02:53:48 -05:00
|
|
|
// FIXME handle primitive type names in resolver as well?
|
2019-03-22 04:09:35 -05:00
|
|
|
if let Some(int_ty) = primitive::IntTy::from_type_name(name) {
|
|
|
|
return Ty::simple(TypeCtor::Int(primitive::UncertainIntTy::Known(int_ty)));
|
|
|
|
} else if let Some(float_ty) = primitive::FloatTy::from_type_name(name) {
|
|
|
|
return Ty::simple(TypeCtor::Float(primitive::UncertainFloatTy::Known(float_ty)));
|
2019-02-23 08:24:07 -06:00
|
|
|
} else if let Some(known) = name.as_known_name() {
|
|
|
|
match known {
|
2019-03-21 16:20:03 -05:00
|
|
|
KnownName::Bool => return Ty::simple(TypeCtor::Bool),
|
|
|
|
KnownName::Char => return Ty::simple(TypeCtor::Char),
|
|
|
|
KnownName::Str => return Ty::simple(TypeCtor::Str),
|
2019-02-23 08:24:07 -06:00
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Resolve the path (in type namespace)
|
|
|
|
let resolution = resolver.resolve_path(db, path).take_types();
|
|
|
|
|
|
|
|
let def = match resolution {
|
|
|
|
Some(Resolution::Def(def)) => def,
|
|
|
|
Some(Resolution::LocalBinding(..)) => {
|
|
|
|
// this should never happen
|
|
|
|
panic!("path resolved to local binding in type ns");
|
|
|
|
}
|
|
|
|
Some(Resolution::GenericParam(idx)) => {
|
|
|
|
return Ty::Param {
|
|
|
|
idx,
|
2019-03-23 02:53:48 -05:00
|
|
|
// FIXME: maybe return name in resolution?
|
2019-02-23 08:24:07 -06:00
|
|
|
name: path
|
|
|
|
.as_ident()
|
|
|
|
.expect("generic param should be single-segment path")
|
|
|
|
.clone(),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
Some(Resolution::SelfType(impl_block)) => {
|
|
|
|
return impl_block.target_ty(db);
|
|
|
|
}
|
|
|
|
None => return Ty::Unknown,
|
|
|
|
};
|
|
|
|
|
|
|
|
let typable: TypableDef = match def.into() {
|
|
|
|
None => return Ty::Unknown,
|
|
|
|
Some(it) => it,
|
|
|
|
};
|
|
|
|
let ty = db.type_for_def(typable, Namespace::Types);
|
|
|
|
let substs = Ty::substs_from_path(db, resolver, path, typable);
|
2019-02-24 10:25:41 -06:00
|
|
|
ty.subst(&substs)
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
|
2019-02-23 15:59:01 -06:00
|
|
|
pub(super) fn substs_from_path_segment(
|
2019-02-23 08:24:07 -06:00
|
|
|
db: &impl HirDatabase,
|
|
|
|
resolver: &Resolver,
|
2019-02-23 15:59:01 -06:00
|
|
|
segment: &PathSegment,
|
2019-02-23 08:24:07 -06:00
|
|
|
resolved: TypableDef,
|
|
|
|
) -> Substs {
|
2019-02-23 15:59:01 -06:00
|
|
|
let def_generics = match resolved {
|
|
|
|
TypableDef::Function(func) => func.generic_params(db),
|
|
|
|
TypableDef::Struct(s) => s.generic_params(db),
|
|
|
|
TypableDef::Enum(e) => e.generic_params(db),
|
|
|
|
TypableDef::EnumVariant(var) => var.parent_enum(db).generic_params(db),
|
2019-02-24 14:36:49 -06:00
|
|
|
TypableDef::TypeAlias(t) => t.generic_params(db),
|
2019-02-25 02:21:01 -06:00
|
|
|
TypableDef::Const(_) | TypableDef::Static(_) => GenericParams::default().into(),
|
2019-02-23 08:24:07 -06:00
|
|
|
};
|
2019-03-26 17:07:26 -05:00
|
|
|
substs_from_path_segment(db, resolver, segment, &def_generics, false)
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
2019-02-23 15:59:01 -06:00
|
|
|
|
|
|
|
/// Collect generic arguments from a path into a `Substs`. See also
|
|
|
|
/// `create_substs_for_ast_path` and `def_to_ty` in rustc.
|
|
|
|
pub(super) fn substs_from_path(
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
resolver: &Resolver,
|
|
|
|
path: &Path,
|
|
|
|
resolved: TypableDef,
|
|
|
|
) -> Substs {
|
|
|
|
let last = path.segments.last().expect("path should have at least one segment");
|
|
|
|
let segment = match resolved {
|
2019-02-24 10:25:41 -06:00
|
|
|
TypableDef::Function(_)
|
|
|
|
| TypableDef::Struct(_)
|
|
|
|
| TypableDef::Enum(_)
|
2019-02-25 01:27:47 -06:00
|
|
|
| TypableDef::Const(_)
|
2019-02-25 02:21:01 -06:00
|
|
|
| TypableDef::Static(_)
|
2019-02-24 14:36:49 -06:00
|
|
|
| TypableDef::TypeAlias(_) => last,
|
2019-02-23 15:59:01 -06:00
|
|
|
TypableDef::EnumVariant(_) => {
|
|
|
|
// the generic args for an enum variant may be either specified
|
|
|
|
// on the segment referring to the enum, or on the segment
|
|
|
|
// referring to the variant. So `Option::<T>::None` and
|
|
|
|
// `Option::None::<T>` are both allowed (though the former is
|
|
|
|
// preferred). See also `def_ids_for_path_segments` in rustc.
|
|
|
|
let len = path.segments.len();
|
|
|
|
let segment = if len >= 2 && path.segments[len - 2].args_and_bindings.is_some() {
|
|
|
|
// Option::<T>::None
|
|
|
|
&path.segments[len - 2]
|
|
|
|
} else {
|
|
|
|
// Option::None::<T>
|
|
|
|
last
|
|
|
|
};
|
|
|
|
segment
|
|
|
|
}
|
|
|
|
};
|
|
|
|
Ty::substs_from_path_segment(db, resolver, segment, resolved)
|
|
|
|
}
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
|
2019-03-26 17:07:26 -05:00
|
|
|
pub(super) fn substs_from_path_segment(
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
resolver: &Resolver,
|
|
|
|
segment: &PathSegment,
|
|
|
|
def_generics: &GenericParams,
|
|
|
|
add_self_param: bool,
|
|
|
|
) -> Substs {
|
|
|
|
let mut substs = Vec::new();
|
|
|
|
let parent_param_count = def_generics.count_parent_params();
|
2019-04-09 15:04:59 -05:00
|
|
|
substs.extend(iter::repeat(Ty::Unknown).take(parent_param_count));
|
2019-03-26 17:07:26 -05:00
|
|
|
if add_self_param {
|
|
|
|
// FIXME this add_self_param argument is kind of a hack: Traits have the
|
|
|
|
// Self type as an implicit first type parameter, but it can't be
|
|
|
|
// actually provided in the type arguments
|
2019-04-09 15:04:59 -05:00
|
|
|
// (well, actually sometimes it can, in the form of type-relative paths: `<Foo as Default>::default()`)
|
2019-03-26 17:07:26 -05:00
|
|
|
substs.push(Ty::Unknown);
|
|
|
|
}
|
|
|
|
if let Some(generic_args) = &segment.args_and_bindings {
|
|
|
|
// if args are provided, it should be all of them, but we can't rely on that
|
2019-04-09 15:04:59 -05:00
|
|
|
let self_param_correction = if add_self_param { 1 } else { 0 };
|
|
|
|
let param_count = def_generics.params.len() - self_param_correction;
|
2019-03-26 17:07:26 -05:00
|
|
|
for arg in generic_args.args.iter().take(param_count) {
|
|
|
|
match arg {
|
|
|
|
GenericArg::Type(type_ref) => {
|
|
|
|
let ty = Ty::from_hir(db, resolver, type_ref);
|
|
|
|
substs.push(ty);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// add placeholders for args that were not provided
|
|
|
|
// FIXME: handle defaults
|
|
|
|
let supplied_params = substs.len();
|
|
|
|
for _ in supplied_params..def_generics.count_params_including_parent() {
|
|
|
|
substs.push(Ty::Unknown);
|
|
|
|
}
|
|
|
|
assert_eq!(substs.len(), def_generics.count_params_including_parent());
|
|
|
|
Substs(substs.into())
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TraitRef {
|
|
|
|
pub(crate) fn from_hir(
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
resolver: &Resolver,
|
|
|
|
type_ref: &TypeRef,
|
2019-03-31 13:02:16 -05:00
|
|
|
explicit_self_ty: Option<Ty>,
|
2019-03-26 17:07:26 -05:00
|
|
|
) -> Option<Self> {
|
|
|
|
let path = match type_ref {
|
|
|
|
TypeRef::Path(path) => path,
|
|
|
|
_ => return None,
|
|
|
|
};
|
|
|
|
let resolved = match resolver.resolve_path(db, &path).take_types()? {
|
|
|
|
Resolution::Def(ModuleDef::Trait(tr)) => tr,
|
|
|
|
_ => return None,
|
|
|
|
};
|
2019-03-31 13:02:16 -05:00
|
|
|
let mut substs = Self::substs_from_path(db, resolver, path, resolved);
|
|
|
|
if let Some(self_ty) = explicit_self_ty {
|
|
|
|
// FIXME this could be nicer
|
|
|
|
let mut substs_vec = substs.0.to_vec();
|
|
|
|
substs_vec[0] = self_ty;
|
|
|
|
substs.0 = substs_vec.into();
|
|
|
|
}
|
2019-03-26 17:07:26 -05:00
|
|
|
Some(TraitRef { trait_: resolved, substs })
|
|
|
|
}
|
|
|
|
|
|
|
|
fn substs_from_path(
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
resolver: &Resolver,
|
|
|
|
path: &Path,
|
|
|
|
resolved: Trait,
|
|
|
|
) -> Substs {
|
|
|
|
let segment = path.segments.last().expect("path should have at least one segment");
|
|
|
|
substs_from_path_segment(db, resolver, segment, &resolved.generic_params(db), true)
|
|
|
|
}
|
2019-04-20 05:34:36 -05:00
|
|
|
|
|
|
|
pub(crate) fn for_trait(db: &impl HirDatabase, trait_: Trait) -> TraitRef {
|
|
|
|
let substs = Substs::identity(&trait_.generic_params(db));
|
|
|
|
TraitRef { trait_, substs }
|
|
|
|
}
|
2019-03-26 17:07:26 -05:00
|
|
|
}
|
|
|
|
|
2019-02-23 08:24:07 -06:00
|
|
|
/// Build the declared type of an item. This depends on the namespace; e.g. for
|
|
|
|
/// `struct Foo(usize)`, we have two types: The type of the struct itself, and
|
|
|
|
/// the constructor function `(usize) -> Foo` which lives in the values
|
|
|
|
/// namespace.
|
|
|
|
pub(crate) fn type_for_def(db: &impl HirDatabase, def: TypableDef, ns: Namespace) -> Ty {
|
|
|
|
match (def, ns) {
|
|
|
|
(TypableDef::Function(f), Namespace::Values) => type_for_fn(db, f),
|
|
|
|
(TypableDef::Struct(s), Namespace::Types) => type_for_struct(db, s),
|
|
|
|
(TypableDef::Struct(s), Namespace::Values) => type_for_struct_constructor(db, s),
|
|
|
|
(TypableDef::Enum(e), Namespace::Types) => type_for_enum(db, e),
|
|
|
|
(TypableDef::EnumVariant(v), Namespace::Values) => type_for_enum_variant_constructor(db, v),
|
2019-02-24 14:36:49 -06:00
|
|
|
(TypableDef::TypeAlias(t), Namespace::Types) => type_for_type_alias(db, t),
|
2019-02-25 01:27:47 -06:00
|
|
|
(TypableDef::Const(c), Namespace::Values) => type_for_const(db, c),
|
2019-02-25 02:21:01 -06:00
|
|
|
(TypableDef::Static(c), Namespace::Values) => type_for_static(db, c),
|
2019-02-23 08:24:07 -06:00
|
|
|
|
|
|
|
// 'error' cases:
|
|
|
|
(TypableDef::Function(_), Namespace::Types) => Ty::Unknown,
|
|
|
|
(TypableDef::Enum(_), Namespace::Values) => Ty::Unknown,
|
|
|
|
(TypableDef::EnumVariant(_), Namespace::Types) => Ty::Unknown,
|
2019-02-24 14:36:49 -06:00
|
|
|
(TypableDef::TypeAlias(_), Namespace::Values) => Ty::Unknown,
|
2019-02-25 01:27:47 -06:00
|
|
|
(TypableDef::Const(_), Namespace::Types) => Ty::Unknown,
|
2019-02-25 02:21:01 -06:00
|
|
|
(TypableDef::Static(_), Namespace::Types) => Ty::Unknown,
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-16 11:29:55 -05:00
|
|
|
/// Build the signature of a callable item (function, struct or enum variant).
|
|
|
|
pub(crate) fn callable_item_sig(db: &impl HirDatabase, def: CallableDef) -> FnSig {
|
|
|
|
match def {
|
|
|
|
CallableDef::Function(f) => fn_sig_for_fn(db, f),
|
|
|
|
CallableDef::Struct(s) => fn_sig_for_struct_constructor(db, s),
|
|
|
|
CallableDef::EnumVariant(e) => fn_sig_for_enum_variant_constructor(db, e),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-23 08:24:07 -06:00
|
|
|
/// Build the type of a specific field of a struct or enum variant.
|
|
|
|
pub(crate) fn type_for_field(db: &impl HirDatabase, field: StructField) -> Ty {
|
|
|
|
let parent_def = field.parent_def(db);
|
|
|
|
let resolver = match parent_def {
|
|
|
|
VariantDef::Struct(it) => it.resolver(db),
|
|
|
|
VariantDef::EnumVariant(it) => it.parent_enum(db).resolver(db),
|
|
|
|
};
|
|
|
|
let var_data = parent_def.variant_data(db);
|
|
|
|
let type_ref = &var_data.fields().unwrap()[field.id].type_ref;
|
|
|
|
Ty::from_hir(db, &resolver, type_ref)
|
|
|
|
}
|
|
|
|
|
2019-03-16 11:21:32 -05:00
|
|
|
fn fn_sig_for_fn(db: &impl HirDatabase, def: Function) -> FnSig {
|
|
|
|
let signature = def.signature(db);
|
|
|
|
let resolver = def.resolver(db);
|
|
|
|
let params =
|
|
|
|
signature.params().iter().map(|tr| Ty::from_hir(db, &resolver, tr)).collect::<Vec<_>>();
|
|
|
|
let ret = Ty::from_hir(db, &resolver, signature.ret_type());
|
|
|
|
FnSig::from_params_and_return(params, ret)
|
|
|
|
}
|
|
|
|
|
2019-02-23 08:24:07 -06:00
|
|
|
/// Build the declared type of a function. This should not need to look at the
|
|
|
|
/// function body.
|
|
|
|
fn type_for_fn(db: &impl HirDatabase, def: Function) -> Ty {
|
|
|
|
let generics = def.generic_params(db);
|
2019-04-20 05:34:36 -05:00
|
|
|
let substs = Substs::identity(&generics);
|
2019-03-21 16:20:03 -05:00
|
|
|
Ty::apply(TypeCtor::FnDef(def.into()), substs)
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
|
2019-02-25 01:27:47 -06:00
|
|
|
/// Build the declared type of a const.
|
|
|
|
fn type_for_const(db: &impl HirDatabase, def: Const) -> Ty {
|
|
|
|
let signature = def.signature(db);
|
|
|
|
let resolver = def.resolver(db);
|
|
|
|
|
|
|
|
Ty::from_hir(db, &resolver, signature.type_ref())
|
|
|
|
}
|
|
|
|
|
2019-02-25 02:21:01 -06:00
|
|
|
/// Build the declared type of a static.
|
|
|
|
fn type_for_static(db: &impl HirDatabase, def: Static) -> Ty {
|
|
|
|
let signature = def.signature(db);
|
|
|
|
let resolver = def.resolver(db);
|
|
|
|
|
|
|
|
Ty::from_hir(db, &resolver, signature.type_ref())
|
|
|
|
}
|
|
|
|
|
2019-03-16 11:21:32 -05:00
|
|
|
fn fn_sig_for_struct_constructor(db: &impl HirDatabase, def: Struct) -> FnSig {
|
2019-02-23 08:24:07 -06:00
|
|
|
let var_data = def.variant_data(db);
|
|
|
|
let fields = match var_data.fields() {
|
|
|
|
Some(fields) => fields,
|
2019-03-16 11:21:32 -05:00
|
|
|
None => panic!("fn_sig_for_struct_constructor called on unit struct"),
|
2019-02-23 08:24:07 -06:00
|
|
|
};
|
|
|
|
let resolver = def.resolver(db);
|
2019-03-16 11:21:32 -05:00
|
|
|
let params = fields
|
2019-02-23 08:24:07 -06:00
|
|
|
.iter()
|
|
|
|
.map(|(_, field)| Ty::from_hir(db, &resolver, &field.type_ref))
|
|
|
|
.collect::<Vec<_>>();
|
2019-03-16 11:21:32 -05:00
|
|
|
let ret = type_for_struct(db, def);
|
|
|
|
FnSig::from_params_and_return(params, ret)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Build the type of a tuple struct constructor.
|
|
|
|
fn type_for_struct_constructor(db: &impl HirDatabase, def: Struct) -> Ty {
|
|
|
|
let var_data = def.variant_data(db);
|
|
|
|
if var_data.fields().is_none() {
|
|
|
|
return type_for_struct(db, def); // Unit struct
|
|
|
|
}
|
|
|
|
let generics = def.generic_params(db);
|
2019-04-20 05:34:36 -05:00
|
|
|
let substs = Substs::identity(&generics);
|
2019-03-21 16:20:03 -05:00
|
|
|
Ty::apply(TypeCtor::FnDef(def.into()), substs)
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
|
2019-03-16 11:21:32 -05:00
|
|
|
fn fn_sig_for_enum_variant_constructor(db: &impl HirDatabase, def: EnumVariant) -> FnSig {
|
2019-02-23 08:24:07 -06:00
|
|
|
let var_data = def.variant_data(db);
|
|
|
|
let fields = match var_data.fields() {
|
|
|
|
Some(fields) => fields,
|
2019-03-16 11:21:32 -05:00
|
|
|
None => panic!("fn_sig_for_enum_variant_constructor called for unit variant"),
|
2019-02-23 08:24:07 -06:00
|
|
|
};
|
|
|
|
let resolver = def.parent_enum(db).resolver(db);
|
2019-03-16 11:21:32 -05:00
|
|
|
let params = fields
|
2019-02-23 08:24:07 -06:00
|
|
|
.iter()
|
|
|
|
.map(|(_, field)| Ty::from_hir(db, &resolver, &field.type_ref))
|
|
|
|
.collect::<Vec<_>>();
|
2019-03-16 11:21:32 -05:00
|
|
|
let generics = def.parent_enum(db).generic_params(db);
|
2019-04-20 05:34:36 -05:00
|
|
|
let substs = Substs::identity(&generics);
|
2019-03-16 11:21:32 -05:00
|
|
|
let ret = type_for_enum(db, def.parent_enum(db)).subst(&substs);
|
|
|
|
FnSig::from_params_and_return(params, ret)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Build the type of a tuple enum variant constructor.
|
|
|
|
fn type_for_enum_variant_constructor(db: &impl HirDatabase, def: EnumVariant) -> Ty {
|
|
|
|
let var_data = def.variant_data(db);
|
|
|
|
if var_data.fields().is_none() {
|
|
|
|
return type_for_enum(db, def.parent_enum(db)); // Unit variant
|
|
|
|
}
|
|
|
|
let generics = def.parent_enum(db).generic_params(db);
|
2019-04-20 05:34:36 -05:00
|
|
|
let substs = Substs::identity(&generics);
|
2019-03-21 16:20:03 -05:00
|
|
|
Ty::apply(TypeCtor::FnDef(def.into()), substs)
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn type_for_struct(db: &impl HirDatabase, s: Struct) -> Ty {
|
|
|
|
let generics = s.generic_params(db);
|
2019-04-20 05:34:36 -05:00
|
|
|
Ty::apply(TypeCtor::Adt(s.into()), Substs::identity(&generics))
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn type_for_enum(db: &impl HirDatabase, s: Enum) -> Ty {
|
|
|
|
let generics = s.generic_params(db);
|
2019-04-20 05:34:36 -05:00
|
|
|
Ty::apply(TypeCtor::Adt(s.into()), Substs::identity(&generics))
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
|
2019-02-24 14:36:49 -06:00
|
|
|
fn type_for_type_alias(db: &impl HirDatabase, t: TypeAlias) -> Ty {
|
2019-02-24 10:25:41 -06:00
|
|
|
let generics = t.generic_params(db);
|
|
|
|
let resolver = t.resolver(db);
|
|
|
|
let type_ref = t.type_ref(db);
|
2019-04-20 05:34:36 -05:00
|
|
|
let substs = Substs::identity(&generics);
|
2019-02-24 10:25:41 -06:00
|
|
|
let inner = Ty::from_hir(db, &resolver, &type_ref);
|
|
|
|
inner.subst(&substs)
|
|
|
|
}
|
|
|
|
|
2019-02-23 08:24:07 -06:00
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
|
|
|
pub enum TypableDef {
|
|
|
|
Function(Function),
|
|
|
|
Struct(Struct),
|
|
|
|
Enum(Enum),
|
|
|
|
EnumVariant(EnumVariant),
|
2019-02-24 14:36:49 -06:00
|
|
|
TypeAlias(TypeAlias),
|
2019-02-25 01:27:47 -06:00
|
|
|
Const(Const),
|
2019-02-25 02:21:01 -06:00
|
|
|
Static(Static),
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
2019-02-25 02:21:01 -06:00
|
|
|
impl_froms!(TypableDef: Function, Struct, Enum, EnumVariant, TypeAlias, Const, Static);
|
2019-02-23 08:24:07 -06:00
|
|
|
|
|
|
|
impl From<ModuleDef> for Option<TypableDef> {
|
|
|
|
fn from(def: ModuleDef) -> Option<TypableDef> {
|
|
|
|
let res = match def {
|
|
|
|
ModuleDef::Function(f) => f.into(),
|
|
|
|
ModuleDef::Struct(s) => s.into(),
|
|
|
|
ModuleDef::Enum(e) => e.into(),
|
|
|
|
ModuleDef::EnumVariant(v) => v.into(),
|
2019-02-24 14:36:49 -06:00
|
|
|
ModuleDef::TypeAlias(t) => t.into(),
|
2019-02-25 01:27:47 -06:00
|
|
|
ModuleDef::Const(v) => v.into(),
|
2019-02-25 02:21:01 -06:00
|
|
|
ModuleDef::Static(v) => v.into(),
|
|
|
|
ModuleDef::Module(_) | ModuleDef::Trait(_) => return None,
|
2019-02-23 08:24:07 -06:00
|
|
|
};
|
|
|
|
Some(res)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
|
|
|
pub enum CallableDef {
|
|
|
|
Function(Function),
|
|
|
|
Struct(Struct),
|
|
|
|
EnumVariant(EnumVariant),
|
|
|
|
}
|
|
|
|
impl_froms!(CallableDef: Function, Struct, EnumVariant);
|