2019-10-30 05:10:38 -05:00
|
|
|
//! `hir_def` crate contains everything between macro expansion and type
|
|
|
|
//! inference.
|
|
|
|
//!
|
|
|
|
//! It defines various items (structs, enums, traits) which comprises Rust code,
|
|
|
|
//! as well as an algorithm for resolving paths to such entities.
|
|
|
|
//!
|
|
|
|
//! Note that `hir_def` is a work in progress, so not all of the above is
|
|
|
|
//! actually true.
|
|
|
|
|
2020-04-06 09:58:16 -05:00
|
|
|
#[allow(unused)]
|
|
|
|
macro_rules! eprintln {
|
|
|
|
($($tt:tt)*) => { stdx::eprintln!($($tt)*) };
|
|
|
|
}
|
|
|
|
|
2019-10-30 05:10:38 -05:00
|
|
|
pub mod db;
|
2019-11-24 08:00:10 -06:00
|
|
|
|
2019-10-30 08:12:55 -05:00
|
|
|
pub mod attr;
|
|
|
|
pub mod path;
|
|
|
|
pub mod type_ref;
|
2019-10-31 02:51:54 -05:00
|
|
|
pub mod builtin_type;
|
2019-10-31 10:45:10 -05:00
|
|
|
pub mod diagnostics;
|
2019-11-24 08:00:10 -06:00
|
|
|
pub mod per_ns;
|
2019-12-20 08:38:17 -06:00
|
|
|
pub mod item_scope;
|
2019-11-24 08:00:10 -06:00
|
|
|
|
2019-12-05 16:34:12 -06:00
|
|
|
pub mod dyn_map;
|
|
|
|
pub mod keys;
|
|
|
|
|
2020-03-25 09:33:01 -05:00
|
|
|
pub mod item_tree;
|
|
|
|
|
2019-11-24 08:00:10 -06:00
|
|
|
pub mod adt;
|
2019-11-22 08:32:10 -06:00
|
|
|
pub mod data;
|
2019-11-24 08:00:10 -06:00
|
|
|
pub mod generics;
|
2019-11-23 03:58:01 -06:00
|
|
|
pub mod lang_item;
|
2019-11-23 05:43:38 -06:00
|
|
|
pub mod docs;
|
2019-11-24 08:00:10 -06:00
|
|
|
|
|
|
|
pub mod expr;
|
|
|
|
pub mod body;
|
|
|
|
pub mod resolver;
|
2019-10-30 08:12:55 -05:00
|
|
|
|
2019-11-22 12:43:36 -06:00
|
|
|
mod trace;
|
2019-11-27 08:46:02 -06:00
|
|
|
pub mod nameres;
|
2019-11-22 12:43:36 -06:00
|
|
|
|
2019-11-28 09:05:28 -06:00
|
|
|
pub mod src;
|
2019-12-05 16:34:12 -06:00
|
|
|
pub mod child_by_source;
|
2019-11-28 09:05:28 -06:00
|
|
|
|
2019-12-24 13:32:42 -06:00
|
|
|
pub mod visibility;
|
2019-12-30 07:25:19 -06:00
|
|
|
pub mod find_path;
|
2020-05-20 16:51:20 -05:00
|
|
|
pub mod import_map;
|
2019-12-24 13:32:42 -06:00
|
|
|
|
2019-11-03 11:53:17 -06:00
|
|
|
#[cfg(test)]
|
|
|
|
mod test_db;
|
|
|
|
|
2020-06-22 08:07:06 -05:00
|
|
|
use std::hash::{Hash, Hasher};
|
2019-10-30 05:10:38 -05:00
|
|
|
|
2020-08-12 09:22:05 -05:00
|
|
|
use arena::Idx;
|
2020-08-13 09:25:38 -05:00
|
|
|
use base_db::{impl_intern_key, salsa, CrateId};
|
2020-02-16 22:57:24 -06:00
|
|
|
use hir_expand::{
|
2020-03-13 10:05:46 -05:00
|
|
|
ast_id_map::FileAstId, eager::expand_eager_macro, hygiene::Hygiene, AstId, HirFileId, InFile,
|
|
|
|
MacroCallId, MacroCallKind, MacroDefId, MacroDefKind,
|
2020-02-16 22:57:24 -06:00
|
|
|
};
|
2020-08-12 11:26:51 -05:00
|
|
|
use syntax::ast;
|
2019-10-30 05:10:38 -05:00
|
|
|
|
2019-12-12 08:13:05 -06:00
|
|
|
use crate::builtin_type::BuiltinType;
|
2020-06-22 08:07:06 -05:00
|
|
|
use item_tree::{
|
|
|
|
Const, Enum, Function, Impl, ItemTreeId, ItemTreeNode, ModItem, Static, Struct, Trait,
|
|
|
|
TypeAlias, Union,
|
|
|
|
};
|
2020-07-13 09:16:53 -05:00
|
|
|
use stdx::impl_from;
|
2019-10-30 05:10:38 -05:00
|
|
|
|
2019-11-23 07:49:05 -06:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-10-30 04:27:54 -05:00
|
|
|
pub struct ModuleId {
|
|
|
|
pub krate: CrateId,
|
2019-11-27 12:31:51 -06:00
|
|
|
pub local_id: LocalModuleId,
|
2019-10-30 04:27:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// An ID of a module, **local** to a specific crate
|
2020-03-19 10:00:11 -05:00
|
|
|
pub type LocalModuleId = Idx<nameres::ModuleData>;
|
2019-10-30 05:10:38 -05:00
|
|
|
|
2020-06-22 08:07:06 -05:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct ItemLoc<N: ItemTreeNode> {
|
2019-12-20 06:11:01 -06:00
|
|
|
pub container: ContainerId,
|
2020-06-22 08:07:06 -05:00
|
|
|
pub id: ItemTreeId<N>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<N: ItemTreeNode> Clone for ItemLoc<N> {
|
|
|
|
fn clone(&self) -> Self {
|
|
|
|
Self { container: self.container, id: self.id }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<N: ItemTreeNode> Copy for ItemLoc<N> {}
|
|
|
|
|
|
|
|
impl<N: ItemTreeNode> PartialEq for ItemLoc<N> {
|
|
|
|
fn eq(&self, other: &Self) -> bool {
|
|
|
|
self.container == other.container && self.id == other.id
|
|
|
|
}
|
2019-12-20 06:11:01 -06:00
|
|
|
}
|
2019-10-30 05:10:38 -05:00
|
|
|
|
2020-06-22 08:07:06 -05:00
|
|
|
impl<N: ItemTreeNode> Eq for ItemLoc<N> {}
|
|
|
|
|
|
|
|
impl<N: ItemTreeNode> Hash for ItemLoc<N> {
|
|
|
|
fn hash<H: Hasher>(&self, state: &mut H) {
|
|
|
|
self.container.hash(state);
|
|
|
|
self.id.hash(state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct AssocItemLoc<N: ItemTreeNode> {
|
2019-12-20 04:59:50 -06:00
|
|
|
pub container: AssocContainerId,
|
2020-06-22 08:07:06 -05:00
|
|
|
pub id: ItemTreeId<N>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<N: ItemTreeNode> Clone for AssocItemLoc<N> {
|
|
|
|
fn clone(&self) -> Self {
|
|
|
|
Self { container: self.container, id: self.id }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<N: ItemTreeNode> Copy for AssocItemLoc<N> {}
|
|
|
|
|
|
|
|
impl<N: ItemTreeNode> PartialEq for AssocItemLoc<N> {
|
|
|
|
fn eq(&self, other: &Self) -> bool {
|
|
|
|
self.container == other.container && self.id == other.id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<N: ItemTreeNode> Eq for AssocItemLoc<N> {}
|
|
|
|
|
|
|
|
impl<N: ItemTreeNode> Hash for AssocItemLoc<N> {
|
|
|
|
fn hash<H: Hasher>(&self, state: &mut H) {
|
|
|
|
self.container.hash(state);
|
|
|
|
self.id.hash(state);
|
|
|
|
}
|
2019-11-20 07:03:59 -06:00
|
|
|
}
|
|
|
|
|
2019-12-20 06:19:41 -06:00
|
|
|
macro_rules! impl_intern {
|
|
|
|
($id:ident, $loc:ident, $intern:ident, $lookup:ident) => {
|
|
|
|
impl_intern_key!($id);
|
|
|
|
|
|
|
|
impl Intern for $loc {
|
|
|
|
type ID = $id;
|
2020-03-13 10:05:46 -05:00
|
|
|
fn intern(self, db: &dyn db::DefDatabase) -> $id {
|
2019-12-20 06:19:41 -06:00
|
|
|
db.$intern(self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Lookup for $id {
|
|
|
|
type Data = $loc;
|
2020-03-13 10:05:46 -05:00
|
|
|
fn lookup(&self, db: &dyn db::DefDatabase) -> $loc {
|
2019-12-20 06:19:41 -06:00
|
|
|
db.$lookup(*self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-12-20 06:11:01 -06:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct FunctionId(salsa::InternId);
|
2020-06-22 08:07:06 -05:00
|
|
|
type FunctionLoc = AssocItemLoc<Function>;
|
2019-12-20 06:19:41 -06:00
|
|
|
impl_intern!(FunctionId, FunctionLoc, intern_function, lookup_intern_function);
|
2019-10-30 05:10:38 -05:00
|
|
|
|
2020-07-15 14:47:45 -05:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
|
2019-11-25 08:30:50 -06:00
|
|
|
pub struct StructId(salsa::InternId);
|
2020-06-22 08:07:06 -05:00
|
|
|
type StructLoc = ItemLoc<Struct>;
|
2019-12-20 06:19:41 -06:00
|
|
|
impl_intern!(StructId, StructLoc, intern_struct, lookup_intern_struct);
|
2019-10-30 05:10:38 -05:00
|
|
|
|
2020-07-15 14:47:45 -05:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
|
2019-11-25 08:30:50 -06:00
|
|
|
pub struct UnionId(salsa::InternId);
|
2020-06-22 08:07:06 -05:00
|
|
|
pub type UnionLoc = ItemLoc<Union>;
|
2019-12-20 06:19:41 -06:00
|
|
|
impl_intern!(UnionId, UnionLoc, intern_union, lookup_intern_union);
|
2019-10-30 08:12:55 -05:00
|
|
|
|
2020-07-15 14:47:45 -05:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
|
2019-10-30 05:10:38 -05:00
|
|
|
pub struct EnumId(salsa::InternId);
|
2020-06-22 08:07:06 -05:00
|
|
|
pub type EnumLoc = ItemLoc<Enum>;
|
2019-12-20 06:19:41 -06:00
|
|
|
impl_intern!(EnumId, EnumLoc, intern_enum, lookup_intern_enum);
|
2019-10-30 05:10:38 -05:00
|
|
|
|
2019-10-30 08:12:55 -05:00
|
|
|
// FIXME: rename to `VariantId`, only enums can ave variants
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct EnumVariantId {
|
2019-10-31 10:45:10 -05:00
|
|
|
pub parent: EnumId,
|
|
|
|
pub local_id: LocalEnumVariantId,
|
2019-10-30 08:12:55 -05:00
|
|
|
}
|
|
|
|
|
2020-03-19 10:00:11 -05:00
|
|
|
pub type LocalEnumVariantId = Idx<adt::EnumVariantData>;
|
2019-10-30 08:12:55 -05:00
|
|
|
|
2019-10-31 08:40:36 -05:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2020-04-25 07:23:34 -05:00
|
|
|
pub struct FieldId {
|
2019-11-23 02:14:10 -06:00
|
|
|
pub parent: VariantId,
|
2020-04-25 07:23:34 -05:00
|
|
|
pub local_id: LocalFieldId,
|
2019-10-31 08:40:36 -05:00
|
|
|
}
|
|
|
|
|
2020-04-25 07:23:34 -05:00
|
|
|
pub type LocalFieldId = Idx<adt::FieldData>;
|
2019-10-31 08:40:36 -05:00
|
|
|
|
2019-10-30 05:10:38 -05:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct ConstId(salsa::InternId);
|
2020-06-22 08:07:06 -05:00
|
|
|
type ConstLoc = AssocItemLoc<Const>;
|
2019-12-20 06:19:41 -06:00
|
|
|
impl_intern!(ConstId, ConstLoc, intern_const, lookup_intern_const);
|
2019-10-30 05:10:38 -05:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct StaticId(salsa::InternId);
|
2020-06-22 08:07:06 -05:00
|
|
|
pub type StaticLoc = ItemLoc<Static>;
|
2019-12-20 06:19:41 -06:00
|
|
|
impl_intern!(StaticId, StaticLoc, intern_static, lookup_intern_static);
|
2019-10-30 05:10:38 -05:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct TraitId(salsa::InternId);
|
2020-06-22 08:07:06 -05:00
|
|
|
pub type TraitLoc = ItemLoc<Trait>;
|
2019-12-20 06:19:41 -06:00
|
|
|
impl_intern!(TraitId, TraitLoc, intern_trait, lookup_intern_trait);
|
2019-10-30 05:10:38 -05:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct TypeAliasId(salsa::InternId);
|
2020-06-22 08:07:06 -05:00
|
|
|
type TypeAliasLoc = AssocItemLoc<TypeAlias>;
|
2019-12-20 06:19:41 -06:00
|
|
|
impl_intern!(TypeAliasId, TypeAliasLoc, intern_type_alias, lookup_intern_type_alias);
|
2019-10-31 03:23:30 -05:00
|
|
|
|
2020-06-18 18:29:34 -05:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Ord, PartialOrd)]
|
2019-11-15 10:14:50 -06:00
|
|
|
pub struct ImplId(salsa::InternId);
|
2020-06-22 08:07:06 -05:00
|
|
|
type ImplLoc = ItemLoc<Impl>;
|
2019-12-20 06:47:44 -06:00
|
|
|
impl_intern!(ImplId, ImplLoc, intern_impl, lookup_intern_impl);
|
2019-11-15 10:14:50 -06:00
|
|
|
|
2019-12-20 06:11:01 -06:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct TypeParamId {
|
|
|
|
pub parent: GenericDefId,
|
|
|
|
pub local_id: LocalTypeParamId,
|
|
|
|
}
|
|
|
|
|
2020-03-19 10:00:11 -05:00
|
|
|
pub type LocalTypeParamId = Idx<generics::TypeParamData>;
|
2019-12-20 06:11:01 -06:00
|
|
|
|
2019-11-20 08:49:57 -06:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-12-20 05:07:23 -06:00
|
|
|
pub enum ContainerId {
|
2019-11-20 08:49:57 -06:00
|
|
|
ModuleId(ModuleId),
|
2019-12-20 05:07:23 -06:00
|
|
|
DefWithBodyId(DefWithBodyId),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub enum AssocContainerId {
|
|
|
|
ContainerId(ContainerId),
|
2019-11-20 08:49:57 -06:00
|
|
|
ImplId(ImplId),
|
|
|
|
TraitId(TraitId),
|
|
|
|
}
|
2020-07-13 09:16:53 -05:00
|
|
|
impl_from!(ContainerId for AssocContainerId);
|
2019-11-20 08:49:57 -06:00
|
|
|
|
2019-10-31 03:23:30 -05:00
|
|
|
/// A Data Type
|
2020-07-15 14:47:45 -05:00
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
|
2019-10-31 03:23:30 -05:00
|
|
|
pub enum AdtId {
|
|
|
|
StructId(StructId),
|
|
|
|
UnionId(UnionId),
|
|
|
|
EnumId(EnumId),
|
|
|
|
}
|
2020-07-13 09:16:53 -05:00
|
|
|
impl_from!(StructId, UnionId, EnumId for AdtId);
|
2019-10-31 03:23:30 -05:00
|
|
|
|
|
|
|
/// The defs which can be visible in the module.
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub enum ModuleDefId {
|
|
|
|
ModuleId(ModuleId),
|
|
|
|
FunctionId(FunctionId),
|
|
|
|
AdtId(AdtId),
|
|
|
|
// Can't be directly declared, but can be imported.
|
|
|
|
EnumVariantId(EnumVariantId),
|
|
|
|
ConstId(ConstId),
|
|
|
|
StaticId(StaticId),
|
|
|
|
TraitId(TraitId),
|
|
|
|
TypeAliasId(TypeAliasId),
|
|
|
|
BuiltinType(BuiltinType),
|
|
|
|
}
|
2020-07-13 09:16:53 -05:00
|
|
|
impl_from!(
|
|
|
|
ModuleId,
|
2019-10-31 03:23:30 -05:00
|
|
|
FunctionId,
|
|
|
|
AdtId(StructId, EnumId, UnionId),
|
|
|
|
EnumVariantId,
|
|
|
|
ConstId,
|
|
|
|
StaticId,
|
|
|
|
TraitId,
|
|
|
|
TypeAliasId,
|
|
|
|
BuiltinType
|
2020-07-13 09:16:53 -05:00
|
|
|
for ModuleDefId
|
2019-10-31 03:23:30 -05:00
|
|
|
);
|
2019-11-14 08:37:22 -06:00
|
|
|
|
|
|
|
/// The defs which have a body.
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub enum DefWithBodyId {
|
|
|
|
FunctionId(FunctionId),
|
|
|
|
StaticId(StaticId),
|
|
|
|
ConstId(ConstId),
|
|
|
|
}
|
|
|
|
|
2020-07-13 09:16:53 -05:00
|
|
|
impl_from!(FunctionId, ConstId, StaticId for DefWithBodyId);
|
2019-11-15 12:28:00 -06:00
|
|
|
|
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub enum AssocItemId {
|
|
|
|
FunctionId(FunctionId),
|
|
|
|
ConstId(ConstId),
|
|
|
|
TypeAliasId(TypeAliasId),
|
|
|
|
}
|
|
|
|
// FIXME: not every function, ... is actually an assoc item. maybe we should make
|
|
|
|
// sure that you can only turn actual assoc items into AssocItemIds. This would
|
|
|
|
// require not implementing From, and instead having some checked way of
|
|
|
|
// casting them, and somehow making the constructors private, which would be annoying.
|
2020-07-13 09:16:53 -05:00
|
|
|
impl_from!(FunctionId, ConstId, TypeAliasId for AssocItemId);
|
2019-11-20 03:25:02 -06:00
|
|
|
|
|
|
|
#[derive(Clone, Copy, PartialEq, Eq, Debug, Hash)]
|
|
|
|
pub enum GenericDefId {
|
|
|
|
FunctionId(FunctionId),
|
|
|
|
AdtId(AdtId),
|
|
|
|
TraitId(TraitId),
|
|
|
|
TypeAliasId(TypeAliasId),
|
|
|
|
ImplId(ImplId),
|
|
|
|
// enum variants cannot have generics themselves, but their parent enums
|
|
|
|
// can, and this makes some code easier to write
|
|
|
|
EnumVariantId(EnumVariantId),
|
|
|
|
// consts can have type parameters from their parents (i.e. associated consts of traits)
|
|
|
|
ConstId(ConstId),
|
|
|
|
}
|
2020-07-13 09:16:53 -05:00
|
|
|
impl_from!(
|
|
|
|
FunctionId,
|
2019-11-20 03:25:02 -06:00
|
|
|
AdtId(StructId, EnumId, UnionId),
|
|
|
|
TraitId,
|
|
|
|
TypeAliasId,
|
|
|
|
ImplId,
|
|
|
|
EnumVariantId,
|
|
|
|
ConstId
|
2020-07-13 09:16:53 -05:00
|
|
|
for GenericDefId
|
2019-11-20 03:25:02 -06:00
|
|
|
);
|
2019-11-20 07:03:59 -06:00
|
|
|
|
2019-11-27 03:31:40 -06:00
|
|
|
impl From<AssocItemId> for GenericDefId {
|
|
|
|
fn from(item: AssocItemId) -> Self {
|
|
|
|
match item {
|
|
|
|
AssocItemId::FunctionId(f) => f.into(),
|
|
|
|
AssocItemId::ConstId(c) => c.into(),
|
|
|
|
AssocItemId::TypeAliasId(t) => t.into(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-23 02:14:10 -06:00
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
|
|
|
pub enum AttrDefId {
|
|
|
|
ModuleId(ModuleId),
|
2020-04-25 07:23:34 -05:00
|
|
|
FieldId(FieldId),
|
2019-11-23 02:14:10 -06:00
|
|
|
AdtId(AdtId),
|
|
|
|
FunctionId(FunctionId),
|
|
|
|
EnumVariantId(EnumVariantId),
|
|
|
|
StaticId(StaticId),
|
|
|
|
ConstId(ConstId),
|
|
|
|
TraitId(TraitId),
|
|
|
|
TypeAliasId(TypeAliasId),
|
|
|
|
MacroDefId(MacroDefId),
|
2019-11-23 03:01:56 -06:00
|
|
|
ImplId(ImplId),
|
2019-11-23 02:14:10 -06:00
|
|
|
}
|
|
|
|
|
2020-07-13 09:16:53 -05:00
|
|
|
impl_from!(
|
|
|
|
ModuleId,
|
2020-04-25 07:23:34 -05:00
|
|
|
FieldId,
|
2019-11-23 02:14:10 -06:00
|
|
|
AdtId(StructId, EnumId, UnionId),
|
|
|
|
EnumVariantId,
|
|
|
|
StaticId,
|
|
|
|
ConstId,
|
|
|
|
FunctionId,
|
|
|
|
TraitId,
|
|
|
|
TypeAliasId,
|
2019-11-23 03:01:56 -06:00
|
|
|
MacroDefId,
|
|
|
|
ImplId
|
2020-07-13 09:16:53 -05:00
|
|
|
for AttrDefId
|
2019-11-23 02:14:10 -06:00
|
|
|
);
|
|
|
|
|
2019-11-24 14:48:39 -06:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub enum VariantId {
|
|
|
|
EnumVariantId(EnumVariantId),
|
|
|
|
StructId(StructId),
|
2019-11-25 08:34:15 -06:00
|
|
|
UnionId(UnionId),
|
2019-11-24 14:48:39 -06:00
|
|
|
}
|
2020-07-13 09:16:53 -05:00
|
|
|
impl_from!(EnumVariantId, StructId, UnionId for VariantId);
|
2019-11-24 14:48:39 -06:00
|
|
|
|
2019-11-20 07:03:59 -06:00
|
|
|
trait Intern {
|
|
|
|
type ID;
|
2020-03-13 10:05:46 -05:00
|
|
|
fn intern(self, db: &dyn db::DefDatabase) -> Self::ID;
|
2019-11-20 07:03:59 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Lookup {
|
|
|
|
type Data;
|
2020-03-13 10:05:46 -05:00
|
|
|
fn lookup(&self, db: &dyn db::DefDatabase) -> Self::Data;
|
2019-11-20 07:03:59 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub trait HasModule {
|
2020-03-13 10:05:46 -05:00
|
|
|
fn module(&self, db: &dyn db::DefDatabase) -> ModuleId;
|
2019-11-20 07:03:59 -06:00
|
|
|
}
|
|
|
|
|
2019-12-20 05:07:23 -06:00
|
|
|
impl HasModule for ContainerId {
|
2020-03-13 10:05:46 -05:00
|
|
|
fn module(&self, db: &dyn db::DefDatabase) -> ModuleId {
|
2019-12-20 05:07:23 -06:00
|
|
|
match *self {
|
|
|
|
ContainerId::ModuleId(it) => it,
|
|
|
|
ContainerId::DefWithBodyId(it) => it.module(db),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-20 04:59:50 -06:00
|
|
|
impl HasModule for AssocContainerId {
|
2020-03-13 10:05:46 -05:00
|
|
|
fn module(&self, db: &dyn db::DefDatabase) -> ModuleId {
|
2019-12-19 11:12:46 -06:00
|
|
|
match *self {
|
2019-12-20 05:07:23 -06:00
|
|
|
AssocContainerId::ContainerId(it) => it.module(db),
|
2019-12-20 06:47:44 -06:00
|
|
|
AssocContainerId::ImplId(it) => it.lookup(db).container.module(db),
|
2019-12-20 05:29:25 -06:00
|
|
|
AssocContainerId::TraitId(it) => it.lookup(db).container.module(db),
|
2019-11-20 07:03:59 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-22 08:07:06 -05:00
|
|
|
impl<N: ItemTreeNode> HasModule for AssocItemLoc<N> {
|
2020-03-13 10:05:46 -05:00
|
|
|
fn module(&self, db: &dyn db::DefDatabase) -> ModuleId {
|
2019-12-19 11:12:46 -06:00
|
|
|
self.container.module(db)
|
2019-11-20 09:00:01 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-24 13:47:58 -06:00
|
|
|
impl HasModule for AdtId {
|
2020-03-13 10:05:46 -05:00
|
|
|
fn module(&self, db: &dyn db::DefDatabase) -> ModuleId {
|
2019-11-24 13:47:58 -06:00
|
|
|
match self {
|
2019-12-12 07:58:04 -06:00
|
|
|
AdtId::StructId(it) => it.lookup(db).container,
|
2019-12-12 08:11:57 -06:00
|
|
|
AdtId::UnionId(it) => it.lookup(db).container,
|
|
|
|
AdtId::EnumId(it) => it.lookup(db).container,
|
2019-11-24 13:47:58 -06:00
|
|
|
}
|
2019-12-20 05:20:49 -06:00
|
|
|
.module(db)
|
2019-11-24 13:47:58 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-26 05:02:57 -06:00
|
|
|
impl HasModule for DefWithBodyId {
|
2020-03-13 10:05:46 -05:00
|
|
|
fn module(&self, db: &dyn db::DefDatabase) -> ModuleId {
|
2019-11-26 05:02:57 -06:00
|
|
|
match self {
|
|
|
|
DefWithBodyId::FunctionId(it) => it.lookup(db).module(db),
|
|
|
|
DefWithBodyId::StaticId(it) => it.lookup(db).module(db),
|
|
|
|
DefWithBodyId::ConstId(it) => it.lookup(db).module(db),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-22 08:07:06 -05:00
|
|
|
impl DefWithBodyId {
|
|
|
|
pub fn as_mod_item(self, db: &dyn db::DefDatabase) -> ModItem {
|
|
|
|
match self {
|
|
|
|
DefWithBodyId::FunctionId(it) => it.lookup(db).id.value.into(),
|
|
|
|
DefWithBodyId::StaticId(it) => it.lookup(db).id.value.into(),
|
|
|
|
DefWithBodyId::ConstId(it) => it.lookup(db).id.value.into(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-07 12:52:09 -06:00
|
|
|
impl HasModule for GenericDefId {
|
2020-03-13 10:05:46 -05:00
|
|
|
fn module(&self, db: &dyn db::DefDatabase) -> ModuleId {
|
2019-12-07 12:52:09 -06:00
|
|
|
match self {
|
|
|
|
GenericDefId::FunctionId(it) => it.lookup(db).module(db),
|
|
|
|
GenericDefId::AdtId(it) => it.module(db),
|
2019-12-20 05:29:25 -06:00
|
|
|
GenericDefId::TraitId(it) => it.lookup(db).container.module(db),
|
2019-12-07 12:52:09 -06:00
|
|
|
GenericDefId::TypeAliasId(it) => it.lookup(db).module(db),
|
2019-12-20 06:47:44 -06:00
|
|
|
GenericDefId::ImplId(it) => it.lookup(db).container.module(db),
|
2019-12-20 05:20:49 -06:00
|
|
|
GenericDefId::EnumVariantId(it) => it.parent.lookup(db).container.module(db),
|
2019-12-07 12:52:09 -06:00
|
|
|
GenericDefId::ConstId(it) => it.lookup(db).module(db),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-24 06:13:56 -06:00
|
|
|
impl HasModule for StaticLoc {
|
2020-03-13 10:05:46 -05:00
|
|
|
fn module(&self, db: &dyn db::DefDatabase) -> ModuleId {
|
2019-12-20 05:22:55 -06:00
|
|
|
self.container.module(db)
|
2019-11-24 06:13:56 -06:00
|
|
|
}
|
|
|
|
}
|
2020-02-16 22:57:24 -06:00
|
|
|
|
|
|
|
/// A helper trait for converting to MacroCallId
|
|
|
|
pub trait AsMacroCall {
|
|
|
|
fn as_call_id(
|
|
|
|
&self,
|
2020-03-13 10:05:46 -05:00
|
|
|
db: &dyn db::DefDatabase,
|
2020-06-11 05:08:24 -05:00
|
|
|
krate: CrateId,
|
2020-02-16 22:57:24 -06:00
|
|
|
resolver: impl Fn(path::ModPath) -> Option<MacroDefId>,
|
|
|
|
) -> Option<MacroCallId>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AsMacroCall for InFile<&ast::MacroCall> {
|
|
|
|
fn as_call_id(
|
|
|
|
&self,
|
2020-03-13 10:05:46 -05:00
|
|
|
db: &dyn db::DefDatabase,
|
2020-06-11 05:08:24 -05:00
|
|
|
krate: CrateId,
|
2020-02-16 22:57:24 -06:00
|
|
|
resolver: impl Fn(path::ModPath) -> Option<MacroDefId>,
|
|
|
|
) -> Option<MacroCallId> {
|
|
|
|
let ast_id = AstId::new(self.file_id, db.ast_id_map(self.file_id).ast_id(self.value));
|
2020-03-13 10:05:46 -05:00
|
|
|
let h = Hygiene::new(db.upcast(), self.file_id);
|
2020-02-16 22:57:24 -06:00
|
|
|
let path = path::ModPath::from_src(self.value.path()?, &h)?;
|
|
|
|
|
2020-06-11 05:08:24 -05:00
|
|
|
AstIdWithPath::new(ast_id.file_id, ast_id.value, path).as_call_id(db, krate, resolver)
|
2020-02-16 22:57:24 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Helper wrapper for `AstId` with `ModPath`
|
|
|
|
#[derive(Clone, Debug, Eq, PartialEq)]
|
|
|
|
struct AstIdWithPath<T: ast::AstNode> {
|
2020-11-02 06:13:32 -06:00
|
|
|
ast_id: AstId<T>,
|
|
|
|
path: path::ModPath,
|
2020-02-16 22:57:24 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: ast::AstNode> AstIdWithPath<T> {
|
2020-11-02 06:13:32 -06:00
|
|
|
fn new(file_id: HirFileId, ast_id: FileAstId<T>, path: path::ModPath) -> AstIdWithPath<T> {
|
2020-02-16 22:57:24 -06:00
|
|
|
AstIdWithPath { ast_id: AstId::new(file_id, ast_id), path }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AsMacroCall for AstIdWithPath<ast::MacroCall> {
|
|
|
|
fn as_call_id(
|
|
|
|
&self,
|
2020-03-13 10:05:46 -05:00
|
|
|
db: &dyn db::DefDatabase,
|
2020-06-11 05:08:24 -05:00
|
|
|
krate: CrateId,
|
2020-02-16 22:57:24 -06:00
|
|
|
resolver: impl Fn(path::ModPath) -> Option<MacroDefId>,
|
|
|
|
) -> Option<MacroCallId> {
|
2020-03-02 00:05:15 -06:00
|
|
|
let def: MacroDefId = resolver(self.path.clone())?;
|
|
|
|
|
|
|
|
if let MacroDefKind::BuiltInEager(_) = def.kind {
|
2020-03-13 10:05:46 -05:00
|
|
|
let macro_call = InFile::new(self.ast_id.file_id, self.ast_id.to_node(db.upcast()));
|
|
|
|
let hygiene = Hygiene::new(db.upcast(), self.ast_id.file_id);
|
2020-03-02 00:05:15 -06:00
|
|
|
|
|
|
|
Some(
|
2020-06-11 05:08:24 -05:00
|
|
|
expand_eager_macro(db.upcast(), krate, macro_call, def, &|path: ast::Path| {
|
2020-03-02 00:05:15 -06:00
|
|
|
resolver(path::ModPath::from_src(path, &hygiene)?)
|
|
|
|
})?
|
|
|
|
.into(),
|
|
|
|
)
|
|
|
|
} else {
|
2020-06-11 05:08:24 -05:00
|
|
|
Some(def.as_lazy_macro(db.upcast(), krate, MacroCallKind::FnLike(self.ast_id)).into())
|
2020-03-02 00:05:15 -06:00
|
|
|
}
|
2020-02-16 22:57:24 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-29 17:23:03 -05:00
|
|
|
impl AsMacroCall for AstIdWithPath<ast::Item> {
|
2020-02-16 22:57:24 -06:00
|
|
|
fn as_call_id(
|
|
|
|
&self,
|
2020-03-13 10:05:46 -05:00
|
|
|
db: &dyn db::DefDatabase,
|
2020-06-11 05:08:24 -05:00
|
|
|
krate: CrateId,
|
2020-02-16 22:57:24 -06:00
|
|
|
resolver: impl Fn(path::ModPath) -> Option<MacroDefId>,
|
|
|
|
) -> Option<MacroCallId> {
|
|
|
|
let def = resolver(self.path.clone())?;
|
2020-03-18 04:47:59 -05:00
|
|
|
Some(
|
2020-03-23 14:32:06 -05:00
|
|
|
def.as_lazy_macro(
|
|
|
|
db.upcast(),
|
2020-06-11 05:08:24 -05:00
|
|
|
krate,
|
2020-03-23 14:32:06 -05:00
|
|
|
MacroCallKind::Attr(self.ast_id, self.path.segments.last()?.to_string()),
|
|
|
|
)
|
|
|
|
.into(),
|
2020-03-18 04:47:59 -05:00
|
|
|
)
|
2020-02-16 22:57:24 -06:00
|
|
|
}
|
|
|
|
}
|