2019-10-30 10:10:38 +00: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.
|
|
|
|
|
|
|
|
pub mod db;
|
2019-11-24 14:00:10 +00:00
|
|
|
|
2019-10-30 13:12:55 +00:00
|
|
|
pub mod attr;
|
|
|
|
pub mod path;
|
|
|
|
pub mod type_ref;
|
2019-10-31 07:51:54 +00:00
|
|
|
pub mod builtin_type;
|
2019-10-31 15:45:10 +00:00
|
|
|
pub mod diagnostics;
|
2019-11-24 14:00:10 +00:00
|
|
|
pub mod per_ns;
|
|
|
|
|
2019-12-05 22:34:12 +00:00
|
|
|
pub mod dyn_map;
|
|
|
|
pub mod keys;
|
|
|
|
|
2019-11-24 14:00:10 +00:00
|
|
|
pub mod adt;
|
2019-11-22 14:32:10 +00:00
|
|
|
pub mod data;
|
2019-11-24 14:00:10 +00:00
|
|
|
pub mod generics;
|
2019-11-23 09:58:01 +00:00
|
|
|
pub mod lang_item;
|
2019-11-23 11:43:38 +00:00
|
|
|
pub mod docs;
|
2019-11-24 14:00:10 +00:00
|
|
|
|
|
|
|
pub mod expr;
|
|
|
|
pub mod body;
|
|
|
|
pub mod resolver;
|
2019-10-30 13:12:55 +00:00
|
|
|
|
2019-11-22 18:43:36 +00:00
|
|
|
mod trace;
|
2019-11-27 14:46:02 +00:00
|
|
|
pub mod nameres;
|
2019-11-22 18:43:36 +00:00
|
|
|
|
2019-11-28 15:05:28 +00:00
|
|
|
pub mod src;
|
2019-12-05 22:34:12 +00:00
|
|
|
pub mod child_by_source;
|
2019-11-28 15:05:28 +00:00
|
|
|
|
2019-11-03 17:53:17 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod test_db;
|
2019-11-03 20:44:23 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod marks;
|
2019-11-03 17:53:17 +00:00
|
|
|
|
2019-12-12 14:13:05 +00:00
|
|
|
use std::hash::Hash;
|
2019-10-30 10:10:38 +00:00
|
|
|
|
2019-12-12 14:13:05 +00:00
|
|
|
use hir_expand::{ast_id_map::FileAstId, AstId, HirFileId, InFile, MacroDefId};
|
2019-11-28 15:05:28 +00:00
|
|
|
use ra_arena::{impl_arena_id, RawId};
|
2019-11-24 11:13:51 +00:00
|
|
|
use ra_db::{impl_intern_key, salsa, CrateId};
|
2019-12-20 12:11:01 +00:00
|
|
|
use ra_syntax::{ast, AstNode};
|
2019-10-30 10:10:38 +00:00
|
|
|
|
2019-12-12 14:13:05 +00:00
|
|
|
use crate::builtin_type::BuiltinType;
|
2019-10-30 10:10:38 +00:00
|
|
|
|
2019-10-30 09:27:54 +00:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-11-23 13:49:05 +00:00
|
|
|
pub struct LocalImportId(RawId);
|
|
|
|
impl_arena_id!(LocalImportId);
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-10-30 09:27:54 +00:00
|
|
|
pub struct ModuleId {
|
|
|
|
pub krate: CrateId,
|
2019-11-27 18:31:51 +00:00
|
|
|
pub local_id: LocalModuleId,
|
2019-10-30 09:27:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// An ID of a module, **local** to a specific crate
|
|
|
|
// FIXME: rename to `LocalModuleId`.
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
2019-11-23 13:49:53 +00:00
|
|
|
pub struct LocalModuleId(RawId);
|
|
|
|
impl_arena_id!(LocalModuleId);
|
2019-10-30 10:10:38 +00:00
|
|
|
|
2019-12-20 12:11:01 +00:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct ItemLoc<N: AstNode> {
|
|
|
|
pub container: ContainerId,
|
|
|
|
pub ast_id: AstId<N>,
|
|
|
|
}
|
2019-10-30 10:10:38 +00:00
|
|
|
|
2019-11-20 13:03:59 +00:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
2019-12-20 12:11:01 +00:00
|
|
|
pub struct AssocItemLoc<N: AstNode> {
|
2019-12-20 10:59:50 +00:00
|
|
|
pub container: AssocContainerId,
|
2019-12-20 12:11:01 +00:00
|
|
|
pub ast_id: AstId<N>,
|
2019-11-20 13:03:59 +00:00
|
|
|
}
|
|
|
|
|
2019-12-20 12:19:41 +00:00
|
|
|
macro_rules! impl_intern {
|
|
|
|
($id:ident, $loc:ident, $intern:ident, $lookup:ident) => {
|
|
|
|
impl_intern_key!($id);
|
|
|
|
|
|
|
|
impl Intern for $loc {
|
|
|
|
type ID = $id;
|
|
|
|
fn intern(self, db: &impl db::DefDatabase) -> $id {
|
|
|
|
db.$intern(self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Lookup for $id {
|
|
|
|
type Data = $loc;
|
|
|
|
fn lookup(&self, db: &impl db::DefDatabase) -> $loc {
|
|
|
|
db.$lookup(*self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-12-20 12:11:01 +00:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct FunctionId(salsa::InternId);
|
|
|
|
type FunctionLoc = AssocItemLoc<ast::FnDef>;
|
2019-12-20 12:19:41 +00:00
|
|
|
impl_intern!(FunctionId, FunctionLoc, intern_function, lookup_intern_function);
|
2019-10-30 10:10:38 +00:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-11-25 14:30:50 +00:00
|
|
|
pub struct StructId(salsa::InternId);
|
2019-12-20 12:19:41 +00:00
|
|
|
type StructLoc = ItemLoc<ast::StructDef>;
|
|
|
|
impl_intern!(StructId, StructLoc, intern_struct, lookup_intern_struct);
|
2019-10-30 10:10:38 +00:00
|
|
|
|
2019-10-30 13:12:55 +00:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-11-25 14:30:50 +00:00
|
|
|
pub struct UnionId(salsa::InternId);
|
2019-12-20 12:11:01 +00:00
|
|
|
pub type UnionLoc = ItemLoc<ast::UnionDef>;
|
2019-12-20 12:19:41 +00:00
|
|
|
impl_intern!(UnionId, UnionLoc, intern_union, lookup_intern_union);
|
2019-10-30 13:12:55 +00:00
|
|
|
|
2019-10-30 10:10:38 +00:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct EnumId(salsa::InternId);
|
2019-12-20 12:11:01 +00:00
|
|
|
pub type EnumLoc = ItemLoc<ast::EnumDef>;
|
2019-12-20 12:19:41 +00:00
|
|
|
impl_intern!(EnumId, EnumLoc, intern_enum, lookup_intern_enum);
|
2019-10-30 10:10:38 +00:00
|
|
|
|
2019-10-30 13:12:55 +00:00
|
|
|
// FIXME: rename to `VariantId`, only enums can ave variants
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct EnumVariantId {
|
2019-10-31 15:45:10 +00:00
|
|
|
pub parent: EnumId,
|
|
|
|
pub local_id: LocalEnumVariantId,
|
2019-10-30 13:12:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-10-31 08:23:30 +00:00
|
|
|
pub struct LocalEnumVariantId(RawId);
|
2019-10-30 13:12:55 +00:00
|
|
|
impl_arena_id!(LocalEnumVariantId);
|
|
|
|
|
2019-10-31 13:40:36 +00:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct StructFieldId {
|
2019-11-23 08:14:10 +00:00
|
|
|
pub parent: VariantId,
|
|
|
|
pub local_id: LocalStructFieldId,
|
2019-10-31 13:40:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct LocalStructFieldId(RawId);
|
|
|
|
impl_arena_id!(LocalStructFieldId);
|
|
|
|
|
2019-10-30 10:10:38 +00:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct ConstId(salsa::InternId);
|
2019-12-20 12:11:01 +00:00
|
|
|
type ConstLoc = AssocItemLoc<ast::ConstDef>;
|
2019-12-20 12:19:41 +00:00
|
|
|
impl_intern!(ConstId, ConstLoc, intern_const, lookup_intern_const);
|
2019-10-30 10:10:38 +00:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct StaticId(salsa::InternId);
|
2019-12-20 12:11:01 +00:00
|
|
|
pub type StaticLoc = ItemLoc<ast::StaticDef>;
|
2019-12-20 12:19:41 +00:00
|
|
|
impl_intern!(StaticId, StaticLoc, intern_static, lookup_intern_static);
|
2019-10-30 10:10:38 +00:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct TraitId(salsa::InternId);
|
2019-12-20 12:11:01 +00:00
|
|
|
pub type TraitLoc = ItemLoc<ast::TraitDef>;
|
2019-12-20 12:19:41 +00:00
|
|
|
impl_intern!(TraitId, TraitLoc, intern_trait, lookup_intern_trait);
|
2019-10-30 10:10:38 +00:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct TypeAliasId(salsa::InternId);
|
2019-12-20 12:11:01 +00:00
|
|
|
type TypeAliasLoc = AssocItemLoc<ast::TypeAliasDef>;
|
2019-12-20 12:19:41 +00:00
|
|
|
impl_intern!(TypeAliasId, TypeAliasLoc, intern_type_alias, lookup_intern_type_alias);
|
2019-10-31 08:23:30 +00:00
|
|
|
|
2019-11-15 16:14:50 +00:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct ImplId(salsa::InternId);
|
|
|
|
impl_intern_key!(ImplId);
|
2019-12-12 13:09:13 +00:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct ImplLoc {
|
|
|
|
pub container: ModuleId,
|
|
|
|
pub ast_id: AstId<ast::ImplBlock>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Intern for ImplLoc {
|
|
|
|
type ID = ImplId;
|
|
|
|
fn intern(self, db: &impl db::DefDatabase) -> ImplId {
|
|
|
|
db.intern_impl(self)
|
2019-11-15 16:14:50 +00:00
|
|
|
}
|
2019-12-12 13:09:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Lookup for ImplId {
|
|
|
|
type Data = ImplLoc;
|
|
|
|
fn lookup(&self, db: &impl db::DefDatabase) -> ImplLoc {
|
|
|
|
db.lookup_intern_impl(*self)
|
2019-11-15 16:14:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-20 12:11:01 +00:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct TypeParamId {
|
|
|
|
pub parent: GenericDefId,
|
|
|
|
pub local_id: LocalTypeParamId,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct LocalTypeParamId(RawId);
|
|
|
|
impl_arena_id!(LocalTypeParamId);
|
|
|
|
|
2019-10-31 08:23:30 +00:00
|
|
|
macro_rules! impl_froms {
|
|
|
|
($e:ident: $($v:ident $(($($sv:ident),*))?),*) => {
|
|
|
|
$(
|
|
|
|
impl From<$v> for $e {
|
|
|
|
fn from(it: $v) -> $e {
|
|
|
|
$e::$v(it)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$($(
|
|
|
|
impl From<$sv> for $e {
|
|
|
|
fn from(it: $sv) -> $e {
|
|
|
|
$e::$v($v::$sv(it))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)*)?
|
|
|
|
)*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-20 14:49:57 +00:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-12-20 11:07:23 +00:00
|
|
|
pub enum ContainerId {
|
2019-11-20 14:49:57 +00:00
|
|
|
ModuleId(ModuleId),
|
2019-12-20 11:07:23 +00:00
|
|
|
DefWithBodyId(DefWithBodyId),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub enum AssocContainerId {
|
|
|
|
ContainerId(ContainerId),
|
2019-11-20 14:49:57 +00:00
|
|
|
ImplId(ImplId),
|
|
|
|
TraitId(TraitId),
|
|
|
|
}
|
2019-12-20 11:07:23 +00:00
|
|
|
impl_froms!(AssocContainerId: ContainerId);
|
2019-11-20 14:49:57 +00:00
|
|
|
|
2019-10-31 08:23:30 +00:00
|
|
|
/// A Data Type
|
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
|
|
|
pub enum AdtId {
|
|
|
|
StructId(StructId),
|
|
|
|
UnionId(UnionId),
|
|
|
|
EnumId(EnumId),
|
|
|
|
}
|
|
|
|
impl_froms!(AdtId: StructId, UnionId, EnumId);
|
|
|
|
|
|
|
|
/// 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),
|
|
|
|
}
|
|
|
|
impl_froms!(
|
|
|
|
ModuleDefId: ModuleId,
|
|
|
|
FunctionId,
|
|
|
|
AdtId(StructId, EnumId, UnionId),
|
|
|
|
EnumVariantId,
|
|
|
|
ConstId,
|
|
|
|
StaticId,
|
|
|
|
TraitId,
|
|
|
|
TypeAliasId,
|
|
|
|
BuiltinType
|
|
|
|
);
|
2019-11-14 14:37:22 +00:00
|
|
|
|
|
|
|
/// The defs which have a body.
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub enum DefWithBodyId {
|
|
|
|
FunctionId(FunctionId),
|
|
|
|
StaticId(StaticId),
|
|
|
|
ConstId(ConstId),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl_froms!(DefWithBodyId: FunctionId, ConstId, StaticId);
|
2019-11-15 18:28:00 +00: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.
|
|
|
|
impl_froms!(AssocItemId: FunctionId, ConstId, TypeAliasId);
|
2019-11-20 09:25:02 +00: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),
|
|
|
|
}
|
|
|
|
impl_froms!(
|
|
|
|
GenericDefId: FunctionId,
|
|
|
|
AdtId(StructId, EnumId, UnionId),
|
|
|
|
TraitId,
|
|
|
|
TypeAliasId,
|
|
|
|
ImplId,
|
|
|
|
EnumVariantId,
|
|
|
|
ConstId
|
|
|
|
);
|
2019-11-20 13:03:59 +00:00
|
|
|
|
2019-11-27 09:31:40 +00: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 08:14:10 +00:00
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
|
|
|
pub enum AttrDefId {
|
|
|
|
ModuleId(ModuleId),
|
|
|
|
StructFieldId(StructFieldId),
|
|
|
|
AdtId(AdtId),
|
|
|
|
FunctionId(FunctionId),
|
|
|
|
EnumVariantId(EnumVariantId),
|
|
|
|
StaticId(StaticId),
|
|
|
|
ConstId(ConstId),
|
|
|
|
TraitId(TraitId),
|
|
|
|
TypeAliasId(TypeAliasId),
|
|
|
|
MacroDefId(MacroDefId),
|
2019-11-23 09:01:56 +00:00
|
|
|
ImplId(ImplId),
|
2019-11-23 08:14:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl_froms!(
|
|
|
|
AttrDefId: ModuleId,
|
|
|
|
StructFieldId,
|
|
|
|
AdtId(StructId, EnumId, UnionId),
|
|
|
|
EnumVariantId,
|
|
|
|
StaticId,
|
|
|
|
ConstId,
|
|
|
|
FunctionId,
|
|
|
|
TraitId,
|
|
|
|
TypeAliasId,
|
2019-11-23 09:01:56 +00:00
|
|
|
MacroDefId,
|
|
|
|
ImplId
|
2019-11-23 08:14:10 +00:00
|
|
|
);
|
|
|
|
|
2019-11-24 20:48:39 +00:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub enum VariantId {
|
|
|
|
EnumVariantId(EnumVariantId),
|
|
|
|
StructId(StructId),
|
2019-11-25 14:34:15 +00:00
|
|
|
UnionId(UnionId),
|
2019-11-24 20:48:39 +00:00
|
|
|
}
|
|
|
|
impl_froms!(VariantId: EnumVariantId, StructId);
|
|
|
|
|
2019-11-20 13:03:59 +00:00
|
|
|
trait Intern {
|
|
|
|
type ID;
|
2019-11-23 11:44:43 +00:00
|
|
|
fn intern(self, db: &impl db::DefDatabase) -> Self::ID;
|
2019-11-20 13:03:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Lookup {
|
|
|
|
type Data;
|
2019-11-23 11:44:43 +00:00
|
|
|
fn lookup(&self, db: &impl db::DefDatabase) -> Self::Data;
|
2019-11-20 13:03:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub trait HasModule {
|
2019-11-23 11:44:43 +00:00
|
|
|
fn module(&self, db: &impl db::DefDatabase) -> ModuleId;
|
2019-11-20 13:03:59 +00:00
|
|
|
}
|
|
|
|
|
2019-12-20 11:07:23 +00:00
|
|
|
impl HasModule for ContainerId {
|
|
|
|
fn module(&self, db: &impl db::DefDatabase) -> ModuleId {
|
|
|
|
match *self {
|
|
|
|
ContainerId::ModuleId(it) => it,
|
|
|
|
ContainerId::DefWithBodyId(it) => it.module(db),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-20 10:59:50 +00:00
|
|
|
impl HasModule for AssocContainerId {
|
2019-11-23 11:44:43 +00:00
|
|
|
fn module(&self, db: &impl db::DefDatabase) -> ModuleId {
|
2019-12-19 17:12:46 +00:00
|
|
|
match *self {
|
2019-12-20 11:07:23 +00:00
|
|
|
AssocContainerId::ContainerId(it) => it.module(db),
|
2019-12-20 10:59:50 +00:00
|
|
|
AssocContainerId::ImplId(it) => it.lookup(db).container,
|
2019-12-20 11:29:25 +00:00
|
|
|
AssocContainerId::TraitId(it) => it.lookup(db).container.module(db),
|
2019-11-20 13:03:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-19 17:12:46 +00:00
|
|
|
impl HasModule for FunctionLoc {
|
|
|
|
fn module(&self, db: &impl db::DefDatabase) -> ModuleId {
|
|
|
|
self.container.module(db)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-20 14:39:58 +00:00
|
|
|
impl HasModule for TypeAliasLoc {
|
2019-11-23 11:44:43 +00:00
|
|
|
fn module(&self, db: &impl db::DefDatabase) -> ModuleId {
|
2019-12-19 17:12:46 +00:00
|
|
|
self.container.module(db)
|
2019-11-20 14:39:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-20 15:00:01 +00:00
|
|
|
impl HasModule for ConstLoc {
|
2019-11-23 11:44:43 +00:00
|
|
|
fn module(&self, db: &impl db::DefDatabase) -> ModuleId {
|
2019-12-19 17:12:46 +00:00
|
|
|
self.container.module(db)
|
2019-11-20 15:00:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-24 19:47:58 +00:00
|
|
|
impl HasModule for AdtId {
|
|
|
|
fn module(&self, db: &impl db::DefDatabase) -> ModuleId {
|
|
|
|
match self {
|
2019-12-12 13:58:04 +00:00
|
|
|
AdtId::StructId(it) => it.lookup(db).container,
|
2019-12-12 14:11:57 +00:00
|
|
|
AdtId::UnionId(it) => it.lookup(db).container,
|
|
|
|
AdtId::EnumId(it) => it.lookup(db).container,
|
2019-11-24 19:47:58 +00:00
|
|
|
}
|
2019-12-20 11:20:49 +00:00
|
|
|
.module(db)
|
2019-11-24 19:47:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-26 11:02:57 +00:00
|
|
|
impl HasModule for DefWithBodyId {
|
|
|
|
fn module(&self, db: &impl db::DefDatabase) -> ModuleId {
|
|
|
|
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),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-07 18:52:09 +00:00
|
|
|
impl HasModule for GenericDefId {
|
|
|
|
fn module(&self, db: &impl db::DefDatabase) -> ModuleId {
|
|
|
|
match self {
|
|
|
|
GenericDefId::FunctionId(it) => it.lookup(db).module(db),
|
|
|
|
GenericDefId::AdtId(it) => it.module(db),
|
2019-12-20 11:29:25 +00:00
|
|
|
GenericDefId::TraitId(it) => it.lookup(db).container.module(db),
|
2019-12-07 18:52:09 +00:00
|
|
|
GenericDefId::TypeAliasId(it) => it.lookup(db).module(db),
|
2019-12-12 13:09:13 +00:00
|
|
|
GenericDefId::ImplId(it) => it.lookup(db).container,
|
2019-12-20 11:20:49 +00:00
|
|
|
GenericDefId::EnumVariantId(it) => it.parent.lookup(db).container.module(db),
|
2019-12-07 18:52:09 +00:00
|
|
|
GenericDefId::ConstId(it) => it.lookup(db).module(db),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-24 12:13:56 +00:00
|
|
|
impl HasModule for StaticLoc {
|
2019-12-20 11:22:55 +00:00
|
|
|
fn module(&self, db: &impl db::DefDatabase) -> ModuleId {
|
|
|
|
self.container.module(db)
|
2019-11-24 12:13:56 +00:00
|
|
|
}
|
|
|
|
}
|