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.
|
|
|
|
|
|
|
|
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-05 16:34:12 -06:00
|
|
|
pub mod dyn_map;
|
|
|
|
pub mod keys;
|
|
|
|
|
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-11-03 11:53:17 -06:00
|
|
|
#[cfg(test)]
|
|
|
|
mod test_db;
|
2019-11-03 14:44:23 -06:00
|
|
|
#[cfg(test)]
|
|
|
|
mod marks;
|
2019-11-03 11:53:17 -06:00
|
|
|
|
2019-12-12 08:13:05 -06:00
|
|
|
use std::hash::Hash;
|
2019-10-30 05:10:38 -05:00
|
|
|
|
2019-12-12 08:13:05 -06:00
|
|
|
use hir_expand::{ast_id_map::FileAstId, AstId, HirFileId, InFile, MacroDefId};
|
2019-11-28 09:05:28 -06:00
|
|
|
use ra_arena::{impl_arena_id, RawId};
|
2019-11-24 05:13:51 -06:00
|
|
|
use ra_db::{impl_intern_key, salsa, CrateId};
|
2019-12-12 08:13:05 -06:00
|
|
|
use ra_syntax::ast;
|
2019-10-30 05:10:38 -05:00
|
|
|
|
2019-12-12 08:13:05 -06:00
|
|
|
use crate::builtin_type::BuiltinType;
|
2019-10-30 05:10:38 -05:00
|
|
|
|
2019-10-30 04:27:54 -05:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-11-23 07:49:05 -06:00
|
|
|
pub struct LocalImportId(RawId);
|
|
|
|
impl_arena_id!(LocalImportId);
|
|
|
|
|
|
|
|
#[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
|
|
|
|
// FIXME: rename to `LocalModuleId`.
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
2019-11-23 07:49:53 -06:00
|
|
|
pub struct LocalModuleId(RawId);
|
|
|
|
impl_arena_id!(LocalModuleId);
|
2019-10-30 05:10:38 -05:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct FunctionId(salsa::InternId);
|
|
|
|
impl_intern_key!(FunctionId);
|
|
|
|
|
2019-11-20 07:03:59 -06:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct FunctionLoc {
|
2019-12-20 04:59:50 -06:00
|
|
|
pub container: AssocContainerId,
|
2019-11-20 07:03:59 -06:00
|
|
|
pub ast_id: AstId<ast::FnDef>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Intern for FunctionLoc {
|
|
|
|
type ID = FunctionId;
|
2019-11-23 05:44:43 -06:00
|
|
|
fn intern(self, db: &impl db::DefDatabase) -> FunctionId {
|
2019-11-20 07:03:59 -06:00
|
|
|
db.intern_function(self)
|
2019-10-30 05:10:38 -05:00
|
|
|
}
|
2019-11-20 07:03:59 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Lookup for FunctionId {
|
|
|
|
type Data = FunctionLoc;
|
2019-11-23 05:44:43 -06:00
|
|
|
fn lookup(&self, db: &impl db::DefDatabase) -> FunctionLoc {
|
2019-11-20 07:03:59 -06:00
|
|
|
db.lookup_intern_function(*self)
|
2019-10-30 05:10:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-11-25 08:30:50 -06:00
|
|
|
pub struct StructId(salsa::InternId);
|
|
|
|
impl_intern_key!(StructId);
|
2019-12-12 07:58:04 -06:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct StructLoc {
|
2019-12-20 05:20:49 -06:00
|
|
|
pub container: ContainerId,
|
2019-12-12 07:58:04 -06:00
|
|
|
pub ast_id: AstId<ast::StructDef>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Intern for StructLoc {
|
|
|
|
type ID = StructId;
|
|
|
|
fn intern(self, db: &impl db::DefDatabase) -> StructId {
|
|
|
|
db.intern_struct(self)
|
2019-10-30 05:10:38 -05:00
|
|
|
}
|
2019-12-12 07:58:04 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Lookup for StructId {
|
|
|
|
type Data = StructLoc;
|
|
|
|
fn lookup(&self, db: &impl db::DefDatabase) -> StructLoc {
|
|
|
|
db.lookup_intern_struct(*self)
|
2019-10-30 05:10:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-30 08:12:55 -05:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-11-25 08:30:50 -06:00
|
|
|
pub struct UnionId(salsa::InternId);
|
|
|
|
impl_intern_key!(UnionId);
|
2019-12-12 08:11:57 -06:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct UnionLoc {
|
2019-12-20 05:20:49 -06:00
|
|
|
pub container: ContainerId,
|
2019-12-12 08:11:57 -06:00
|
|
|
pub ast_id: AstId<ast::UnionDef>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Intern for UnionLoc {
|
|
|
|
type ID = UnionId;
|
|
|
|
fn intern(self, db: &impl db::DefDatabase) -> UnionId {
|
|
|
|
db.intern_union(self)
|
2019-10-30 08:12:55 -05:00
|
|
|
}
|
2019-12-12 08:11:57 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Lookup for UnionId {
|
|
|
|
type Data = UnionLoc;
|
|
|
|
fn lookup(&self, db: &impl db::DefDatabase) -> UnionLoc {
|
|
|
|
db.lookup_intern_union(*self)
|
2019-10-30 08:12:55 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-30 05:10:38 -05:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct EnumId(salsa::InternId);
|
|
|
|
impl_intern_key!(EnumId);
|
2019-12-12 08:11:57 -06:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct EnumLoc {
|
2019-12-20 05:20:49 -06:00
|
|
|
pub container: ContainerId,
|
2019-12-12 08:11:57 -06:00
|
|
|
pub ast_id: AstId<ast::EnumDef>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Intern for EnumLoc {
|
|
|
|
type ID = EnumId;
|
|
|
|
fn intern(self, db: &impl db::DefDatabase) -> EnumId {
|
|
|
|
db.intern_enum(self)
|
2019-10-30 05:10:38 -05:00
|
|
|
}
|
2019-12-12 08:11:57 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Lookup for EnumId {
|
|
|
|
type Data = EnumLoc;
|
|
|
|
fn lookup(&self, db: &impl db::DefDatabase) -> EnumLoc {
|
|
|
|
db.lookup_intern_enum(*self)
|
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
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-10-31 03:23:30 -05:00
|
|
|
pub struct LocalEnumVariantId(RawId);
|
2019-10-30 08:12:55 -05:00
|
|
|
impl_arena_id!(LocalEnumVariantId);
|
|
|
|
|
2019-10-31 08:40:36 -05:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct StructFieldId {
|
2019-11-23 02:14:10 -06:00
|
|
|
pub parent: VariantId,
|
|
|
|
pub local_id: LocalStructFieldId,
|
2019-10-31 08:40:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct LocalStructFieldId(RawId);
|
|
|
|
impl_arena_id!(LocalStructFieldId);
|
|
|
|
|
2019-10-30 05:10:38 -05:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct ConstId(salsa::InternId);
|
|
|
|
impl_intern_key!(ConstId);
|
2019-11-20 09:00:01 -06:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct ConstLoc {
|
2019-12-20 04:59:50 -06:00
|
|
|
pub container: AssocContainerId,
|
2019-11-20 09:00:01 -06:00
|
|
|
pub ast_id: AstId<ast::ConstDef>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Intern for ConstLoc {
|
|
|
|
type ID = ConstId;
|
2019-11-23 05:44:43 -06:00
|
|
|
fn intern(self, db: &impl db::DefDatabase) -> ConstId {
|
2019-11-20 09:00:01 -06:00
|
|
|
db.intern_const(self)
|
2019-10-30 05:10:38 -05:00
|
|
|
}
|
2019-11-20 09:00:01 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Lookup for ConstId {
|
|
|
|
type Data = ConstLoc;
|
2019-11-23 05:44:43 -06:00
|
|
|
fn lookup(&self, db: &impl db::DefDatabase) -> ConstLoc {
|
2019-11-20 09:00:01 -06:00
|
|
|
db.lookup_intern_const(*self)
|
2019-10-30 05:10:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct StaticId(salsa::InternId);
|
|
|
|
impl_intern_key!(StaticId);
|
2019-11-24 06:13:56 -06:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct StaticLoc {
|
2019-12-20 05:22:55 -06:00
|
|
|
pub container: ContainerId,
|
2019-11-24 06:13:56 -06:00
|
|
|
pub ast_id: AstId<ast::StaticDef>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Intern for StaticLoc {
|
|
|
|
type ID = StaticId;
|
|
|
|
fn intern(self, db: &impl db::DefDatabase) -> StaticId {
|
|
|
|
db.intern_static(self)
|
2019-10-30 05:10:38 -05:00
|
|
|
}
|
2019-11-24 06:13:56 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Lookup for StaticId {
|
|
|
|
type Data = StaticLoc;
|
|
|
|
fn lookup(&self, db: &impl db::DefDatabase) -> StaticLoc {
|
|
|
|
db.lookup_intern_static(*self)
|
2019-10-30 05:10:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct TraitId(salsa::InternId);
|
|
|
|
impl_intern_key!(TraitId);
|
2019-12-12 07:34:03 -06:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct TraitLoc {
|
2019-12-20 05:29:25 -06:00
|
|
|
pub container: ContainerId,
|
2019-12-12 07:34:03 -06:00
|
|
|
pub ast_id: AstId<ast::TraitDef>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Intern for TraitLoc {
|
|
|
|
type ID = TraitId;
|
|
|
|
fn intern(self, db: &impl db::DefDatabase) -> TraitId {
|
|
|
|
db.intern_trait(self)
|
2019-10-30 05:10:38 -05:00
|
|
|
}
|
2019-12-12 07:34:03 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Lookup for TraitId {
|
|
|
|
type Data = TraitLoc;
|
|
|
|
fn lookup(&self, db: &impl db::DefDatabase) -> TraitLoc {
|
|
|
|
db.lookup_intern_trait(*self)
|
2019-10-30 05:10:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct TypeAliasId(salsa::InternId);
|
|
|
|
impl_intern_key!(TypeAliasId);
|
2019-11-20 08:39:58 -06:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct TypeAliasLoc {
|
2019-12-20 04:59:50 -06:00
|
|
|
pub container: AssocContainerId,
|
2019-11-20 08:39:58 -06:00
|
|
|
pub ast_id: AstId<ast::TypeAliasDef>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Intern for TypeAliasLoc {
|
|
|
|
type ID = TypeAliasId;
|
2019-11-23 05:44:43 -06:00
|
|
|
fn intern(self, db: &impl db::DefDatabase) -> TypeAliasId {
|
2019-11-20 08:39:58 -06:00
|
|
|
db.intern_type_alias(self)
|
2019-10-30 05:10:38 -05:00
|
|
|
}
|
2019-11-20 08:39:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Lookup for TypeAliasId {
|
|
|
|
type Data = TypeAliasLoc;
|
2019-11-23 05:44:43 -06:00
|
|
|
fn lookup(&self, db: &impl db::DefDatabase) -> TypeAliasLoc {
|
2019-11-20 08:39:58 -06:00
|
|
|
db.lookup_intern_type_alias(*self)
|
2019-10-30 05:10:38 -05:00
|
|
|
}
|
|
|
|
}
|
2019-10-31 03:23:30 -05:00
|
|
|
|
2019-11-15 10:14:50 -06:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct ImplId(salsa::InternId);
|
|
|
|
impl_intern_key!(ImplId);
|
2019-12-12 07:09:13 -06: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 10:14:50 -06:00
|
|
|
}
|
2019-12-12 07:09:13 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Lookup for ImplId {
|
|
|
|
type Data = ImplLoc;
|
|
|
|
fn lookup(&self, db: &impl db::DefDatabase) -> ImplLoc {
|
|
|
|
db.lookup_intern_impl(*self)
|
2019-11-15 10:14:50 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-31 03:23:30 -05: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-12-06 10:35:05 -06:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-12-07 13:09:53 -06:00
|
|
|
pub struct TypeParamId {
|
2019-12-06 10:35:05 -06:00
|
|
|
pub parent: GenericDefId,
|
2019-12-07 13:09:53 -06:00
|
|
|
pub local_id: LocalTypeParamId,
|
2019-12-06 10:35:05 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-12-07 13:09:53 -06:00
|
|
|
pub struct LocalTypeParamId(RawId);
|
|
|
|
impl_arena_id!(LocalTypeParamId);
|
2019-12-06 10:35:05 -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),
|
|
|
|
}
|
2019-12-20 05:07:23 -06:00
|
|
|
impl_froms!(AssocContainerId: ContainerId);
|
2019-11-20 08:49:57 -06:00
|
|
|
|
2019-10-31 03:23:30 -05: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 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),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl_froms!(DefWithBodyId: FunctionId, ConstId, StaticId);
|
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.
|
|
|
|
impl_froms!(AssocItemId: FunctionId, ConstId, TypeAliasId);
|
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),
|
|
|
|
}
|
|
|
|
impl_froms!(
|
|
|
|
GenericDefId: FunctionId,
|
|
|
|
AdtId(StructId, EnumId, UnionId),
|
|
|
|
TraitId,
|
|
|
|
TypeAliasId,
|
|
|
|
ImplId,
|
|
|
|
EnumVariantId,
|
|
|
|
ConstId
|
|
|
|
);
|
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),
|
|
|
|
StructFieldId(StructFieldId),
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
impl_froms!(
|
|
|
|
AttrDefId: ModuleId,
|
|
|
|
StructFieldId,
|
|
|
|
AdtId(StructId, EnumId, UnionId),
|
|
|
|
EnumVariantId,
|
|
|
|
StaticId,
|
|
|
|
ConstId,
|
|
|
|
FunctionId,
|
|
|
|
TraitId,
|
|
|
|
TypeAliasId,
|
2019-11-23 03:01:56 -06:00
|
|
|
MacroDefId,
|
|
|
|
ImplId
|
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
|
|
|
}
|
|
|
|
impl_froms!(VariantId: EnumVariantId, StructId);
|
|
|
|
|
2019-11-20 07:03:59 -06:00
|
|
|
trait Intern {
|
|
|
|
type ID;
|
2019-11-23 05:44:43 -06:00
|
|
|
fn intern(self, db: &impl db::DefDatabase) -> Self::ID;
|
2019-11-20 07:03:59 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Lookup {
|
|
|
|
type Data;
|
2019-11-23 05:44:43 -06:00
|
|
|
fn lookup(&self, db: &impl db::DefDatabase) -> Self::Data;
|
2019-11-20 07:03:59 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub trait HasModule {
|
2019-11-23 05:44:43 -06:00
|
|
|
fn module(&self, db: &impl db::DefDatabase) -> ModuleId;
|
2019-11-20 07:03:59 -06:00
|
|
|
}
|
|
|
|
|
2019-12-20 05:07:23 -06: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 04:59:50 -06:00
|
|
|
impl HasModule for AssocContainerId {
|
2019-11-23 05:44:43 -06:00
|
|
|
fn module(&self, db: &impl 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 04:59:50 -06:00
|
|
|
AssocContainerId::ImplId(it) => it.lookup(db).container,
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-19 11:12:46 -06:00
|
|
|
impl HasModule for FunctionLoc {
|
|
|
|
fn module(&self, db: &impl db::DefDatabase) -> ModuleId {
|
|
|
|
self.container.module(db)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-20 08:39:58 -06:00
|
|
|
impl HasModule for TypeAliasLoc {
|
2019-11-23 05:44:43 -06:00
|
|
|
fn module(&self, db: &impl db::DefDatabase) -> ModuleId {
|
2019-12-19 11:12:46 -06:00
|
|
|
self.container.module(db)
|
2019-11-20 08:39:58 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-20 09:00:01 -06:00
|
|
|
impl HasModule for ConstLoc {
|
2019-11-23 05:44:43 -06:00
|
|
|
fn module(&self, db: &impl 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 {
|
|
|
|
fn module(&self, db: &impl db::DefDatabase) -> ModuleId {
|
|
|
|
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 {
|
|
|
|
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 12:52:09 -06: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 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-12 07:09:13 -06:00
|
|
|
GenericDefId::ImplId(it) => it.lookup(db).container,
|
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 {
|
2019-12-20 05:22:55 -06:00
|
|
|
fn module(&self, db: &impl db::DefDatabase) -> ModuleId {
|
|
|
|
self.container.module(db)
|
2019-11-24 06:13:56 -06:00
|
|
|
}
|
|
|
|
}
|