2019-09-30 11:58:53 +03:00
|
|
|
//! FIXME: write short doc here
|
|
|
|
|
2019-06-11 18:00:08 +03:00
|
|
|
pub(crate) mod src;
|
2019-06-11 18:14:27 +03:00
|
|
|
pub(crate) mod docs;
|
2019-11-04 10:33:10 -03:00
|
|
|
pub(crate) mod attrs;
|
2019-06-11 18:00:08 +03:00
|
|
|
|
2019-01-08 15:19:37 +03:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
2019-10-30 17:19:30 +03:00
|
|
|
use hir_def::{
|
2019-10-31 16:40:36 +03:00
|
|
|
adt::VariantData,
|
2019-11-14 17:37:22 +03:00
|
|
|
body::scope::ExprScopes,
|
2019-10-31 10:51:54 +03:00
|
|
|
builtin_type::BuiltinType,
|
2019-11-21 14:21:26 +03:00
|
|
|
nameres::per_ns::PerNs,
|
2019-11-21 15:39:09 +03:00
|
|
|
resolver::{HasResolver, TypeNs},
|
2019-11-22 17:10:51 +03:00
|
|
|
type_ref::TypeRef,
|
2019-11-21 12:21:46 +03:00
|
|
|
ContainerId, CrateModuleId, HasModule, ImplId, LocalEnumVariantId, LocalStructFieldId, Lookup,
|
|
|
|
ModuleId, UnionId,
|
2019-10-30 17:19:30 +03:00
|
|
|
};
|
2019-11-02 23:42:38 +03:00
|
|
|
use hir_expand::{
|
|
|
|
diagnostics::DiagnosticSink,
|
|
|
|
name::{self, AsName},
|
|
|
|
};
|
2019-10-30 16:12:55 +03:00
|
|
|
use ra_db::{CrateId, Edition};
|
2019-11-22 18:46:39 +03:00
|
|
|
use ra_syntax::ast;
|
2019-01-05 00:02:05 +03:00
|
|
|
|
2019-01-08 15:27:00 +03:00
|
|
|
use crate::{
|
2019-11-22 18:46:39 +03:00
|
|
|
db::{DefDatabase, HirDatabase},
|
2019-11-15 14:53:09 +03:00
|
|
|
expr::{BindingAnnotation, Body, BodySourceMap, ExprValidator, Pat, PatId},
|
2019-07-04 23:05:17 +03:00
|
|
|
ids::{
|
|
|
|
AstItemDef, ConstId, EnumId, FunctionId, MacroDefId, StaticId, StructId, TraitId,
|
|
|
|
TypeAliasId,
|
|
|
|
},
|
2019-11-04 23:02:35 +03:00
|
|
|
ty::{InferenceResult, Namespace, TraitRef},
|
2019-11-21 14:21:26 +03:00
|
|
|
Either, HasSource, ImportId, Name, Source, Ty,
|
2019-01-08 15:27:00 +03:00
|
|
|
};
|
2019-01-05 00:02:05 +03:00
|
|
|
|
2019-01-09 00:47:12 +01:00
|
|
|
/// hir::Crate describes a single crate. It's the main interface with which
|
|
|
|
/// a crate's dependencies interact. Mostly, it should be just a proxy for the
|
2019-01-05 00:02:05 +03:00
|
|
|
/// root module.
|
2019-01-23 23:14:13 +03:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-01-05 00:02:05 +03:00
|
|
|
pub struct Crate {
|
2019-01-30 13:18:21 -05:00
|
|
|
pub(crate) crate_id: CrateId,
|
2019-01-05 00:02:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct CrateDependency {
|
|
|
|
pub krate: Crate,
|
|
|
|
pub name: Name,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Crate {
|
2019-05-23 20:25:55 +03:00
|
|
|
pub fn crate_id(self) -> CrateId {
|
2019-01-06 13:41:12 +03:00
|
|
|
self.crate_id
|
|
|
|
}
|
2019-02-11 23:11:12 +01:00
|
|
|
|
2019-05-23 20:25:55 +03:00
|
|
|
pub fn dependencies(self, db: &impl DefDatabase) -> Vec<CrateDependency> {
|
2019-05-23 20:30:09 +03:00
|
|
|
db.crate_graph()
|
|
|
|
.dependencies(self.crate_id)
|
|
|
|
.map(|dep| {
|
|
|
|
let krate = Crate { crate_id: dep.crate_id() };
|
|
|
|
let name = dep.as_name();
|
|
|
|
CrateDependency { krate, name }
|
|
|
|
})
|
|
|
|
.collect()
|
2019-01-05 00:02:05 +03:00
|
|
|
}
|
2019-02-11 23:11:12 +01:00
|
|
|
|
2019-05-23 20:25:55 +03:00
|
|
|
pub fn root_module(self, db: &impl DefDatabase) -> Option<Module> {
|
2019-10-31 18:45:10 +03:00
|
|
|
let module_id = db.crate_def_map(self.crate_id).root();
|
2019-10-30 12:27:54 +03:00
|
|
|
Some(Module::new(self, module_id))
|
2019-01-05 00:02:05 +03:00
|
|
|
}
|
2019-02-09 18:27:11 +01:00
|
|
|
|
2019-05-23 20:25:55 +03:00
|
|
|
pub fn edition(self, db: &impl DefDatabase) -> Edition {
|
2019-02-11 23:11:12 +01:00
|
|
|
let crate_graph = db.crate_graph();
|
|
|
|
crate_graph.edition(self.crate_id)
|
|
|
|
}
|
|
|
|
|
2019-10-14 15:15:47 +03:00
|
|
|
pub fn all(db: &impl DefDatabase) -> Vec<Crate> {
|
|
|
|
db.crate_graph().iter().map(|crate_id| Crate { crate_id }).collect()
|
2019-02-09 18:27:11 +01:00
|
|
|
}
|
2019-01-05 00:02:05 +03:00
|
|
|
}
|
2019-01-05 01:37:40 +03:00
|
|
|
|
2019-01-23 23:14:13 +03:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-01-05 01:37:40 +03:00
|
|
|
pub struct Module {
|
2019-10-30 12:27:54 +03:00
|
|
|
pub(crate) id: ModuleId,
|
2019-01-23 23:14:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/// The defs which can be visible in the module.
|
2019-03-14 17:25:51 +09:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-01-23 23:14:13 +03:00
|
|
|
pub enum ModuleDef {
|
|
|
|
Module(Module),
|
2019-01-24 15:28:50 +03:00
|
|
|
Function(Function),
|
2019-09-13 00:34:52 +03:00
|
|
|
Adt(Adt),
|
2019-01-25 01:32:47 +03:00
|
|
|
// Can't be directly declared, but can be imported.
|
2019-01-24 23:32:41 +03:00
|
|
|
EnumVariant(EnumVariant),
|
2019-01-25 00:50:08 +03:00
|
|
|
Const(Const),
|
|
|
|
Static(Static),
|
2019-01-25 01:31:32 +03:00
|
|
|
Trait(Trait),
|
2019-02-24 21:36:49 +01:00
|
|
|
TypeAlias(TypeAlias),
|
2019-05-30 14:05:35 +03:00
|
|
|
BuiltinType(BuiltinType),
|
2019-02-24 21:36:49 +01:00
|
|
|
}
|
|
|
|
impl_froms!(
|
|
|
|
ModuleDef: Module,
|
|
|
|
Function,
|
2019-09-13 00:34:52 +03:00
|
|
|
Adt(Struct, Enum, Union),
|
2019-02-24 21:36:49 +01:00
|
|
|
EnumVariant,
|
|
|
|
Const,
|
|
|
|
Static,
|
|
|
|
Trait,
|
2019-05-30 14:05:35 +03:00
|
|
|
TypeAlias,
|
|
|
|
BuiltinType
|
2019-02-24 21:36:49 +01:00
|
|
|
);
|
2019-01-24 17:54:18 +03:00
|
|
|
|
2019-10-30 16:12:55 +03:00
|
|
|
pub use hir_def::ModuleSource;
|
2019-05-23 21:01:08 +03:00
|
|
|
|
2019-01-05 01:37:40 +03:00
|
|
|
impl Module {
|
2019-10-30 12:27:54 +03:00
|
|
|
pub(crate) fn new(krate: Crate, crate_module_id: CrateModuleId) -> Module {
|
|
|
|
Module { id: ModuleId { krate: krate.crate_id, module_id: crate_module_id } }
|
|
|
|
}
|
|
|
|
|
2019-01-06 16:10:25 +03:00
|
|
|
/// Name of this module.
|
2019-06-01 21:17:57 +03:00
|
|
|
pub fn name(self, db: &impl DefDatabase) -> Option<Name> {
|
2019-10-31 18:45:10 +03:00
|
|
|
let def_map = db.crate_def_map(self.id.krate);
|
2019-10-30 12:27:54 +03:00
|
|
|
let parent = def_map[self.id.module_id].parent?;
|
2019-05-23 21:01:08 +03:00
|
|
|
def_map[parent].children.iter().find_map(|(name, module_id)| {
|
2019-10-30 12:27:54 +03:00
|
|
|
if *module_id == self.id.module_id {
|
2019-05-23 21:01:08 +03:00
|
|
|
Some(name.clone())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
2019-01-06 15:58:45 +03:00
|
|
|
}
|
|
|
|
|
2019-01-18 16:36:56 +03:00
|
|
|
/// Returns the syntax of the last path segment corresponding to this import
|
2019-04-10 10:12:54 +03:00
|
|
|
pub fn import_source(
|
2019-05-23 21:01:08 +03:00
|
|
|
self,
|
2019-04-10 10:12:54 +03:00
|
|
|
db: &impl HirDatabase,
|
|
|
|
import: ImportId,
|
2019-07-19 10:43:01 +03:00
|
|
|
) -> Either<ast::UseTree, ast::ExternCrateItem> {
|
2019-06-11 17:47:24 +03:00
|
|
|
let src = self.definition_source(db);
|
|
|
|
let (_, source_map) = db.raw_items_with_source_map(src.file_id);
|
2019-11-20 09:40:36 +03:00
|
|
|
source_map.get(&src.value, import)
|
2019-01-18 16:36:56 +03:00
|
|
|
}
|
|
|
|
|
2019-01-05 01:37:40 +03:00
|
|
|
/// Returns the crate this module is part of.
|
2019-10-30 12:27:54 +03:00
|
|
|
pub fn krate(self) -> Crate {
|
|
|
|
Crate { crate_id: self.id.krate }
|
2019-01-05 01:37:40 +03:00
|
|
|
}
|
2019-01-09 00:47:12 +01:00
|
|
|
|
2019-01-06 16:10:25 +03:00
|
|
|
/// Topmost parent of this module. Every module has a `crate_root`, but some
|
2019-01-09 00:47:12 +01:00
|
|
|
/// might be missing `krate`. This can happen if a module's file is not included
|
2019-02-11 17:18:27 +01:00
|
|
|
/// in the module tree of any target in `Cargo.toml`.
|
2019-05-23 21:01:08 +03:00
|
|
|
pub fn crate_root(self, db: &impl DefDatabase) -> Module {
|
2019-10-31 18:45:10 +03:00
|
|
|
let def_map = db.crate_def_map(self.id.krate);
|
2019-05-23 21:01:08 +03:00
|
|
|
self.with_module_id(def_map.root())
|
2019-01-05 01:37:40 +03:00
|
|
|
}
|
2019-01-09 00:47:12 +01:00
|
|
|
|
2019-01-05 01:37:40 +03:00
|
|
|
/// Finds a child module with the specified name.
|
2019-11-15 10:26:31 +03:00
|
|
|
pub fn child(self, db: &impl DefDatabase, name: &Name) -> Option<Module> {
|
2019-10-31 18:45:10 +03:00
|
|
|
let def_map = db.crate_def_map(self.id.krate);
|
2019-10-30 12:27:54 +03:00
|
|
|
let child_id = def_map[self.id.module_id].children.get(name)?;
|
2019-05-23 21:01:08 +03:00
|
|
|
Some(self.with_module_id(*child_id))
|
2019-01-05 01:37:40 +03:00
|
|
|
}
|
2019-01-09 00:47:12 +01:00
|
|
|
|
2019-01-07 13:44:54 +01:00
|
|
|
/// Iterates over all child modules.
|
2019-05-23 21:01:08 +03:00
|
|
|
pub fn children(self, db: &impl DefDatabase) -> impl Iterator<Item = Module> {
|
2019-10-31 18:45:10 +03:00
|
|
|
let def_map = db.crate_def_map(self.id.krate);
|
2019-10-30 12:27:54 +03:00
|
|
|
let children = def_map[self.id.module_id]
|
2019-05-23 21:01:08 +03:00
|
|
|
.children
|
|
|
|
.iter()
|
|
|
|
.map(|(_, module_id)| self.with_module_id(*module_id))
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
children.into_iter()
|
2019-01-07 13:44:54 +01:00
|
|
|
}
|
|
|
|
|
2019-01-06 14:05:03 +03:00
|
|
|
/// Finds a parent module.
|
2019-05-23 21:01:08 +03:00
|
|
|
pub fn parent(self, db: &impl DefDatabase) -> Option<Module> {
|
2019-10-31 18:45:10 +03:00
|
|
|
let def_map = db.crate_def_map(self.id.krate);
|
2019-10-30 12:27:54 +03:00
|
|
|
let parent_id = def_map[self.id.module_id].parent?;
|
2019-05-23 21:01:08 +03:00
|
|
|
Some(self.with_module_id(parent_id))
|
2019-01-06 14:05:03 +03:00
|
|
|
}
|
2019-01-09 00:47:12 +01:00
|
|
|
|
2019-05-23 21:01:08 +03:00
|
|
|
pub fn path_to_root(self, db: &impl HirDatabase) -> Vec<Module> {
|
2019-07-04 22:59:28 -04:00
|
|
|
let mut res = vec![self];
|
|
|
|
let mut curr = self;
|
2019-01-15 18:30:58 +03:00
|
|
|
while let Some(next) = curr.parent(db) {
|
2019-07-04 22:59:28 -04:00
|
|
|
res.push(next);
|
2019-01-06 15:58:45 +03:00
|
|
|
curr = next
|
|
|
|
}
|
2019-01-15 18:30:58 +03:00
|
|
|
res
|
2019-01-06 15:58:45 +03:00
|
|
|
}
|
2019-01-09 00:47:12 +01:00
|
|
|
|
2019-01-06 15:16:21 +03:00
|
|
|
/// Returns a `ModuleScope`: a set of items, visible in this module.
|
2019-10-31 18:45:10 +03:00
|
|
|
pub fn scope(self, db: &impl HirDatabase) -> Vec<(Name, ScopeDef, Option<ImportId>)> {
|
|
|
|
db.crate_def_map(self.id.krate)[self.id.module_id]
|
|
|
|
.scope
|
|
|
|
.entries()
|
|
|
|
.map(|(name, res)| (name.clone(), res.def.into(), res.import))
|
|
|
|
.collect()
|
2019-01-06 15:16:21 +03:00
|
|
|
}
|
2019-01-09 00:47:12 +01:00
|
|
|
|
2019-05-23 21:01:08 +03:00
|
|
|
pub fn diagnostics(self, db: &impl HirDatabase, sink: &mut DiagnosticSink) {
|
2019-10-31 18:45:10 +03:00
|
|
|
db.crate_def_map(self.id.krate).add_diagnostics(db, self.id.module_id, sink);
|
2019-03-24 10:21:36 +03:00
|
|
|
for decl in self.declarations(db) {
|
|
|
|
match decl {
|
|
|
|
crate::ModuleDef::Function(f) => f.diagnostics(db, sink),
|
2019-07-05 19:27:20 +03:00
|
|
|
crate::ModuleDef::Module(m) => {
|
|
|
|
// Only add diagnostics from inline modules
|
2019-11-20 09:40:36 +03:00
|
|
|
if let ModuleSource::Module(_) = m.definition_source(db).value {
|
2019-07-05 19:27:20 +03:00
|
|
|
m.diagnostics(db, sink)
|
|
|
|
}
|
|
|
|
}
|
2019-03-24 10:21:36 +03:00
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for impl_block in self.impl_blocks(db) {
|
|
|
|
for item in impl_block.items(db) {
|
2019-09-16 22:01:13 +02:00
|
|
|
if let AssocItem::Function(f) = item {
|
2019-06-03 10:01:10 -04:00
|
|
|
f.diagnostics(db, sink);
|
2019-03-24 10:21:36 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-01-06 15:58:45 +03:00
|
|
|
}
|
2019-01-19 21:23:26 +01:00
|
|
|
|
2019-03-31 20:02:16 +02:00
|
|
|
pub fn declarations(self, db: &impl DefDatabase) -> Vec<ModuleDef> {
|
2019-10-31 18:45:10 +03:00
|
|
|
let def_map = db.crate_def_map(self.id.krate);
|
2019-11-20 14:22:06 +03:00
|
|
|
def_map[self.id.module_id].scope.declarations().map(ModuleDef::from).collect()
|
2019-02-09 18:27:11 +01:00
|
|
|
}
|
|
|
|
|
2019-06-19 23:46:50 +03:00
|
|
|
pub fn impl_blocks(self, db: &impl DefDatabase) -> Vec<ImplBlock> {
|
2019-11-15 21:28:00 +03:00
|
|
|
let def_map = db.crate_def_map(self.id.krate);
|
|
|
|
def_map[self.id.module_id].impls.iter().copied().map(ImplBlock::from).collect()
|
2019-02-09 18:27:11 +01:00
|
|
|
}
|
2019-05-23 21:01:08 +03:00
|
|
|
|
2019-07-04 23:01:40 -04:00
|
|
|
fn with_module_id(self, module_id: CrateModuleId) -> Module {
|
2019-10-30 12:27:54 +03:00
|
|
|
Module::new(self.krate(), module_id)
|
2019-05-23 21:01:08 +03:00
|
|
|
}
|
2019-01-05 01:37:40 +03:00
|
|
|
}
|
2019-01-08 15:19:37 +03:00
|
|
|
|
2019-01-25 14:21:14 +03:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-01-08 15:27:00 +03:00
|
|
|
pub struct StructField {
|
2019-01-25 20:32:34 +03:00
|
|
|
pub(crate) parent: VariantDef,
|
2019-10-31 16:40:36 +03:00
|
|
|
pub(crate) id: LocalStructFieldId,
|
2019-01-08 15:27:00 +03:00
|
|
|
}
|
|
|
|
|
2019-09-16 13:48:54 +03:00
|
|
|
#[derive(Debug, PartialEq, Eq)]
|
2019-01-25 20:32:34 +03:00
|
|
|
pub enum FieldSource {
|
2019-08-23 15:55:21 +03:00
|
|
|
Named(ast::RecordFieldDef),
|
|
|
|
Pos(ast::TupleFieldDef),
|
2019-01-25 20:32:34 +03:00
|
|
|
}
|
|
|
|
|
2019-01-08 15:27:00 +03:00
|
|
|
impl StructField {
|
2019-01-25 14:21:14 +03:00
|
|
|
pub fn name(&self, db: &impl HirDatabase) -> Name {
|
2019-02-08 14:49:43 +03:00
|
|
|
self.parent.variant_data(db).fields().unwrap()[self.id].name.clone()
|
2019-01-08 15:27:00 +03:00
|
|
|
}
|
2019-01-18 15:38:11 +01:00
|
|
|
|
2019-01-25 14:21:14 +03:00
|
|
|
pub fn ty(&self, db: &impl HirDatabase) -> Ty {
|
|
|
|
db.type_for_field(*self)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn parent_def(&self, _db: &impl HirDatabase) -> VariantDef {
|
|
|
|
self.parent
|
2019-01-08 15:32:27 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-24 17:54:18 +03:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-01-08 15:19:37 +03:00
|
|
|
pub struct Struct {
|
2019-01-24 17:54:18 +03:00
|
|
|
pub(crate) id: StructId,
|
2019-01-08 15:19:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Struct {
|
2019-09-26 21:37:03 +02:00
|
|
|
pub fn module(self, db: &impl DefDatabase) -> Module {
|
2019-11-09 15:34:00 +03:00
|
|
|
Module { id: self.id.0.module(db) }
|
2019-01-08 15:19:37 +03:00
|
|
|
}
|
|
|
|
|
2019-09-26 21:37:03 +02:00
|
|
|
pub fn krate(self, db: &impl DefDatabase) -> Option<Crate> {
|
2019-10-30 12:27:54 +03:00
|
|
|
Some(self.module(db).krate())
|
2019-09-26 21:37:03 +02:00
|
|
|
}
|
|
|
|
|
2019-06-01 21:17:57 +03:00
|
|
|
pub fn name(self, db: &impl DefDatabase) -> Option<Name> {
|
2019-11-09 15:34:00 +03:00
|
|
|
db.struct_data(self.id.into()).name.clone()
|
2019-01-08 15:22:57 +03:00
|
|
|
}
|
2019-01-08 15:23:56 +03:00
|
|
|
|
2019-05-23 21:01:08 +03:00
|
|
|
pub fn fields(self, db: &impl HirDatabase) -> Vec<StructField> {
|
2019-11-09 15:34:00 +03:00
|
|
|
db.struct_data(self.id.into())
|
2019-01-09 18:46:02 +03:00
|
|
|
.variant_data
|
|
|
|
.fields()
|
2019-01-25 14:21:14 +03:00
|
|
|
.into_iter()
|
|
|
|
.flat_map(|it| it.iter())
|
2019-05-23 21:01:08 +03:00
|
|
|
.map(|(id, _)| StructField { parent: self.into(), id })
|
2019-01-15 18:43:25 +03:00
|
|
|
.collect()
|
2019-01-08 15:23:56 +03:00
|
|
|
}
|
2019-01-08 00:30:49 +01:00
|
|
|
|
2019-05-23 21:01:08 +03:00
|
|
|
pub fn field(self, db: &impl HirDatabase, name: &Name) -> Option<StructField> {
|
2019-11-09 15:34:00 +03:00
|
|
|
db.struct_data(self.id.into())
|
2019-01-25 14:21:14 +03:00
|
|
|
.variant_data
|
|
|
|
.fields()
|
|
|
|
.into_iter()
|
|
|
|
.flat_map(|it| it.iter())
|
|
|
|
.find(|(_id, data)| data.name == *name)
|
2019-05-23 21:01:08 +03:00
|
|
|
.map(|(id, _)| StructField { parent: self.into(), id })
|
2019-01-25 14:21:14 +03:00
|
|
|
}
|
|
|
|
|
2019-05-23 21:01:08 +03:00
|
|
|
pub fn ty(self, db: &impl HirDatabase) -> Ty {
|
|
|
|
db.type_for_def(self.into(), Namespace::Types)
|
2019-02-17 17:29:51 +01:00
|
|
|
}
|
|
|
|
|
2019-05-23 21:01:08 +03:00
|
|
|
pub fn constructor_ty(self, db: &impl HirDatabase) -> Ty {
|
|
|
|
db.type_for_def(self.into(), Namespace::Values)
|
2019-01-28 09:26:32 -05:00
|
|
|
}
|
2019-01-26 22:52:04 +01:00
|
|
|
|
2019-11-20 21:08:39 +03:00
|
|
|
fn variant_data(self, db: &impl DefDatabase) -> Arc<VariantData> {
|
|
|
|
db.struct_data(self.id.into()).variant_data.clone()
|
|
|
|
}
|
2019-01-08 15:22:57 +03:00
|
|
|
}
|
|
|
|
|
2019-05-23 20:18:47 +03:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct Union {
|
2019-10-31 18:45:10 +03:00
|
|
|
pub(crate) id: UnionId,
|
2019-05-23 20:18:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Union {
|
2019-06-01 21:17:57 +03:00
|
|
|
pub fn name(self, db: &impl DefDatabase) -> Option<Name> {
|
2019-11-09 15:34:00 +03:00
|
|
|
db.struct_data(self.id.into()).name.clone()
|
2019-05-23 20:18:47 +03:00
|
|
|
}
|
|
|
|
|
2019-11-20 21:55:33 +03:00
|
|
|
pub fn module(self, db: &impl DefDatabase) -> Module {
|
2019-11-09 15:34:00 +03:00
|
|
|
Module { id: self.id.0.module(db) }
|
2019-05-23 20:18:47 +03:00
|
|
|
}
|
|
|
|
|
2019-06-29 12:40:01 +02:00
|
|
|
pub fn ty(self, db: &impl HirDatabase) -> Ty {
|
|
|
|
db.type_for_def(self.into(), Namespace::Types)
|
|
|
|
}
|
2019-05-23 20:18:47 +03:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:56:38 +03:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-01-08 15:22:57 +03:00
|
|
|
pub struct Enum {
|
2019-01-24 18:56:38 +03:00
|
|
|
pub(crate) id: EnumId,
|
2019-01-08 15:22:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Enum {
|
2019-09-26 21:37:03 +02:00
|
|
|
pub fn module(self, db: &impl DefDatabase) -> Module {
|
2019-10-30 13:10:38 +03:00
|
|
|
Module { id: self.id.module(db) }
|
2019-01-08 15:22:57 +03:00
|
|
|
}
|
|
|
|
|
2019-09-26 21:37:03 +02:00
|
|
|
pub fn krate(self, db: &impl DefDatabase) -> Option<Crate> {
|
2019-10-30 12:27:54 +03:00
|
|
|
Some(self.module(db).krate())
|
2019-09-26 21:37:03 +02:00
|
|
|
}
|
|
|
|
|
2019-06-01 21:17:57 +03:00
|
|
|
pub fn name(self, db: &impl DefDatabase) -> Option<Name> {
|
2019-10-31 16:40:36 +03:00
|
|
|
db.enum_data(self.id).name.clone()
|
2019-01-08 15:22:57 +03:00
|
|
|
}
|
|
|
|
|
2019-05-23 21:01:08 +03:00
|
|
|
pub fn variants(self, db: &impl DefDatabase) -> Vec<EnumVariant> {
|
2019-10-31 16:40:36 +03:00
|
|
|
db.enum_data(self.id)
|
|
|
|
.variants
|
|
|
|
.iter()
|
|
|
|
.map(|(id, _)| EnumVariant { parent: self, id })
|
|
|
|
.collect()
|
2019-01-25 12:41:23 +03:00
|
|
|
}
|
|
|
|
|
2019-05-23 21:01:08 +03:00
|
|
|
pub fn variant(self, db: &impl DefDatabase, name: &Name) -> Option<EnumVariant> {
|
2019-10-31 16:40:36 +03:00
|
|
|
db.enum_data(self.id)
|
2019-01-25 12:41:23 +03:00
|
|
|
.variants
|
|
|
|
.iter()
|
|
|
|
.find(|(_id, data)| data.name.as_ref() == Some(name))
|
2019-05-23 21:01:08 +03:00
|
|
|
.map(|(id, _)| EnumVariant { parent: self, id })
|
2019-01-08 15:19:37 +03:00
|
|
|
}
|
2019-01-08 00:30:49 +01:00
|
|
|
|
2019-05-23 21:01:08 +03:00
|
|
|
pub fn ty(self, db: &impl HirDatabase) -> Ty {
|
|
|
|
db.type_for_def(self.into(), Namespace::Types)
|
2019-01-28 09:26:32 -05:00
|
|
|
}
|
2019-01-08 15:19:37 +03:00
|
|
|
}
|
2019-01-08 20:11:13 +03:00
|
|
|
|
2019-01-24 23:32:41 +03:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-01-08 16:01:19 +01:00
|
|
|
pub struct EnumVariant {
|
2019-01-25 11:35:38 +03:00
|
|
|
pub(crate) parent: Enum,
|
2019-10-31 11:23:30 +03:00
|
|
|
pub(crate) id: LocalEnumVariantId,
|
2019-01-08 16:01:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl EnumVariant {
|
2019-07-04 23:01:40 -04:00
|
|
|
pub fn module(self, db: &impl HirDatabase) -> Module {
|
2019-01-25 11:35:38 +03:00
|
|
|
self.parent.module(db)
|
2019-01-08 16:01:19 +01:00
|
|
|
}
|
2019-07-04 23:01:40 -04:00
|
|
|
pub fn parent_enum(self, _db: &impl DefDatabase) -> Enum {
|
2019-01-25 11:35:38 +03:00
|
|
|
self.parent
|
2019-01-08 16:01:19 +01:00
|
|
|
}
|
|
|
|
|
2019-07-04 23:01:40 -04:00
|
|
|
pub fn name(self, db: &impl DefDatabase) -> Option<Name> {
|
2019-10-31 16:40:36 +03:00
|
|
|
db.enum_data(self.parent.id).variants[self.id].name.clone()
|
2019-01-08 16:01:19 +01:00
|
|
|
}
|
|
|
|
|
2019-07-04 23:01:40 -04:00
|
|
|
pub fn fields(self, db: &impl HirDatabase) -> Vec<StructField> {
|
2019-01-18 15:38:11 +01:00
|
|
|
self.variant_data(db)
|
|
|
|
.fields()
|
2019-01-25 14:21:14 +03:00
|
|
|
.into_iter()
|
|
|
|
.flat_map(|it| it.iter())
|
2019-07-04 23:01:40 -04:00
|
|
|
.map(|(id, _)| StructField { parent: self.into(), id })
|
2019-01-18 15:38:11 +01:00
|
|
|
.collect()
|
|
|
|
}
|
2019-01-25 14:21:14 +03:00
|
|
|
|
2019-07-04 23:01:40 -04:00
|
|
|
pub fn field(self, db: &impl HirDatabase, name: &Name) -> Option<StructField> {
|
2019-01-25 14:21:14 +03:00
|
|
|
self.variant_data(db)
|
|
|
|
.fields()
|
|
|
|
.into_iter()
|
|
|
|
.flat_map(|it| it.iter())
|
|
|
|
.find(|(_id, data)| data.name == *name)
|
2019-07-04 23:01:40 -04:00
|
|
|
.map(|(id, _)| StructField { parent: self.into(), id })
|
2019-01-25 14:21:14 +03:00
|
|
|
}
|
2019-10-31 16:40:36 +03:00
|
|
|
|
|
|
|
pub(crate) fn variant_data(self, db: &impl DefDatabase) -> Arc<VariantData> {
|
|
|
|
db.enum_data(self.parent.id).variants[self.id].variant_data.clone()
|
|
|
|
}
|
2019-01-08 16:01:19 +01:00
|
|
|
}
|
|
|
|
|
2019-09-13 00:34:52 +03:00
|
|
|
/// A Data Type
|
2019-09-13 00:10:16 +03:00
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
2019-09-13 00:34:52 +03:00
|
|
|
pub enum Adt {
|
2019-09-13 00:10:16 +03:00
|
|
|
Struct(Struct),
|
|
|
|
Union(Union),
|
|
|
|
Enum(Enum),
|
|
|
|
}
|
2019-09-13 00:34:52 +03:00
|
|
|
impl_froms!(Adt: Struct, Union, Enum);
|
2019-09-13 00:10:16 +03:00
|
|
|
|
2019-09-13 00:34:52 +03:00
|
|
|
impl Adt {
|
2019-09-13 00:10:16 +03:00
|
|
|
pub fn ty(self, db: &impl HirDatabase) -> Ty {
|
|
|
|
match self {
|
2019-09-13 00:34:52 +03:00
|
|
|
Adt::Struct(it) => it.ty(db),
|
|
|
|
Adt::Union(it) => it.ty(db),
|
|
|
|
Adt::Enum(it) => it.ty(db),
|
2019-09-13 00:10:16 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-20 22:00:57 +03:00
|
|
|
pub fn module(self, db: &impl DefDatabase) -> Module {
|
|
|
|
match self {
|
|
|
|
Adt::Struct(s) => s.module(db),
|
|
|
|
Adt::Union(s) => s.module(db),
|
|
|
|
Adt::Enum(e) => e.module(db),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-26 21:37:03 +02:00
|
|
|
pub fn krate(self, db: &impl HirDatabase) -> Option<Crate> {
|
2019-11-20 22:00:57 +03:00
|
|
|
Some(self.module(db).krate())
|
2019-09-13 00:10:16 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-20 21:08:39 +03:00
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
|
|
|
pub enum VariantDef {
|
|
|
|
Struct(Struct),
|
|
|
|
EnumVariant(EnumVariant),
|
|
|
|
}
|
|
|
|
impl_froms!(VariantDef: Struct, EnumVariant);
|
|
|
|
|
|
|
|
impl VariantDef {
|
|
|
|
pub fn fields(self, db: &impl HirDatabase) -> Vec<StructField> {
|
|
|
|
match self {
|
|
|
|
VariantDef::Struct(it) => it.fields(db),
|
|
|
|
VariantDef::EnumVariant(it) => it.fields(db),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn field(self, db: &impl HirDatabase, name: &Name) -> Option<StructField> {
|
|
|
|
match self {
|
|
|
|
VariantDef::Struct(it) => it.field(db, name),
|
|
|
|
VariantDef::EnumVariant(it) => it.field(db, name),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn module(self, db: &impl HirDatabase) -> Module {
|
|
|
|
match self {
|
|
|
|
VariantDef::Struct(it) => it.module(db),
|
|
|
|
VariantDef::EnumVariant(it) => it.module(db),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn variant_data(self, db: &impl DefDatabase) -> Arc<VariantData> {
|
|
|
|
match self {
|
|
|
|
VariantDef::Struct(it) => it.variant_data(db),
|
|
|
|
VariantDef::EnumVariant(it) => it.variant_data(db),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-30 10:50:00 +00:00
|
|
|
/// The defs which have a body.
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub enum DefWithBody {
|
2019-03-30 11:17:31 +00:00
|
|
|
Function(Function),
|
2019-03-30 10:50:00 +00:00
|
|
|
Static(Static),
|
2019-04-11 00:00:56 +03:00
|
|
|
Const(Const),
|
2019-03-30 10:50:00 +00:00
|
|
|
}
|
|
|
|
|
2019-03-30 11:17:31 +00:00
|
|
|
impl_froms!(DefWithBody: Function, Const, Static);
|
2019-03-30 10:50:00 +00:00
|
|
|
|
2019-03-30 11:17:31 +00:00
|
|
|
impl DefWithBody {
|
2019-09-07 21:03:03 +02:00
|
|
|
pub(crate) fn krate(self, db: &impl HirDatabase) -> Option<Crate> {
|
|
|
|
match self {
|
|
|
|
DefWithBody::Const(c) => c.krate(db),
|
|
|
|
DefWithBody::Function(f) => f.krate(db),
|
|
|
|
DefWithBody::Static(s) => s.krate(db),
|
|
|
|
}
|
|
|
|
}
|
2019-10-09 14:59:47 +03:00
|
|
|
|
|
|
|
pub fn module(self, db: &impl HirDatabase) -> Module {
|
|
|
|
match self {
|
|
|
|
DefWithBody::Const(c) => c.module(db),
|
|
|
|
DefWithBody::Function(f) => f.module(db),
|
|
|
|
DefWithBody::Static(s) => s.module(db),
|
|
|
|
}
|
|
|
|
}
|
2019-03-30 10:50:00 +00:00
|
|
|
}
|
|
|
|
|
2019-08-30 20:16:28 +02:00
|
|
|
pub trait HasBody: Copy {
|
|
|
|
fn infer(self, db: &impl HirDatabase) -> Arc<InferenceResult>;
|
|
|
|
fn body(self, db: &impl HirDatabase) -> Arc<Body>;
|
|
|
|
fn body_source_map(self, db: &impl HirDatabase) -> Arc<BodySourceMap>;
|
2019-11-14 17:37:22 +03:00
|
|
|
fn expr_scopes(self, db: &impl HirDatabase) -> Arc<ExprScopes>;
|
2019-08-30 20:16:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> HasBody for T
|
|
|
|
where
|
|
|
|
T: Into<DefWithBody> + Copy + HasSource,
|
|
|
|
{
|
|
|
|
fn infer(self, db: &impl HirDatabase) -> Arc<InferenceResult> {
|
|
|
|
db.infer(self.into())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn body(self, db: &impl HirDatabase) -> Arc<Body> {
|
2019-11-14 17:37:22 +03:00
|
|
|
self.into().body(db)
|
2019-08-30 20:16:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn body_source_map(self, db: &impl HirDatabase) -> Arc<BodySourceMap> {
|
2019-11-14 17:37:22 +03:00
|
|
|
self.into().body_source_map(db)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn expr_scopes(self, db: &impl HirDatabase) -> Arc<ExprScopes> {
|
|
|
|
self.into().expr_scopes(db)
|
2019-08-30 20:16:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl HasBody for DefWithBody {
|
|
|
|
fn infer(self, db: &impl HirDatabase) -> Arc<InferenceResult> {
|
|
|
|
db.infer(self)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn body(self, db: &impl HirDatabase) -> Arc<Body> {
|
2019-11-14 17:37:22 +03:00
|
|
|
db.body(self.into())
|
2019-08-30 20:16:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn body_source_map(self, db: &impl HirDatabase) -> Arc<BodySourceMap> {
|
2019-11-14 17:37:22 +03:00
|
|
|
db.body_with_source_map(self.into()).1
|
|
|
|
}
|
|
|
|
|
|
|
|
fn expr_scopes(self, db: &impl HirDatabase) -> Arc<ExprScopes> {
|
|
|
|
db.expr_scopes(self.into())
|
2019-08-30 20:16:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-24 15:28:50 +03:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-01-08 20:11:13 +03:00
|
|
|
pub struct Function {
|
2019-01-24 15:28:50 +03:00
|
|
|
pub(crate) id: FunctionId,
|
2019-01-08 20:11:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Function {
|
2019-05-23 21:08:10 +03:00
|
|
|
pub fn module(self, db: &impl DefDatabase) -> Module {
|
2019-11-20 16:03:59 +03:00
|
|
|
self.id.lookup(db).module(db).into()
|
2019-01-08 20:11:13 +03:00
|
|
|
}
|
|
|
|
|
2019-09-07 21:03:03 +02:00
|
|
|
pub fn krate(self, db: &impl DefDatabase) -> Option<Crate> {
|
2019-10-30 12:27:54 +03:00
|
|
|
Some(self.module(db).krate())
|
2019-09-07 21:03:03 +02:00
|
|
|
}
|
|
|
|
|
2019-05-23 21:08:10 +03:00
|
|
|
pub fn name(self, db: &impl HirDatabase) -> Name {
|
2019-11-22 17:10:51 +03:00
|
|
|
db.function_data(self.id).name.clone()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn has_self_param(self, db: &impl HirDatabase) -> bool {
|
|
|
|
db.function_data(self.id).has_self_param
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn params(self, db: &impl HirDatabase) -> Vec<TypeRef> {
|
|
|
|
db.function_data(self.id).params.clone()
|
2019-01-25 22:18:13 +01:00
|
|
|
}
|
|
|
|
|
2019-08-30 20:16:28 +02:00
|
|
|
pub(crate) fn body_source_map(self, db: &impl HirDatabase) -> Arc<BodySourceMap> {
|
2019-11-14 17:37:22 +03:00
|
|
|
db.body_with_source_map(self.id.into()).1
|
2019-01-08 20:11:13 +03:00
|
|
|
}
|
|
|
|
|
2019-05-23 21:08:10 +03:00
|
|
|
pub fn body(self, db: &impl HirDatabase) -> Arc<Body> {
|
2019-11-14 17:37:22 +03:00
|
|
|
db.body(self.id.into())
|
2019-01-19 21:23:26 +01:00
|
|
|
}
|
|
|
|
|
2019-05-23 21:08:10 +03:00
|
|
|
pub fn ty(self, db: &impl HirDatabase) -> Ty {
|
|
|
|
db.type_for_def(self.into(), Namespace::Values)
|
2019-02-23 15:24:07 +01:00
|
|
|
}
|
|
|
|
|
2019-05-23 21:08:10 +03:00
|
|
|
pub fn infer(self, db: &impl HirDatabase) -> Arc<InferenceResult> {
|
|
|
|
db.infer(self.into())
|
2019-01-08 20:11:13 +03:00
|
|
|
}
|
2019-01-12 21:27:35 +01:00
|
|
|
|
2019-02-16 22:06:23 +01:00
|
|
|
/// The containing impl block, if this is a method.
|
2019-05-23 21:08:10 +03:00
|
|
|
pub fn impl_block(self, db: &impl DefDatabase) -> Option<ImplBlock> {
|
2019-11-20 16:03:59 +03:00
|
|
|
match self.container(db) {
|
|
|
|
Some(Container::ImplBlock(it)) => Some(it),
|
|
|
|
_ => None,
|
|
|
|
}
|
2019-02-16 22:06:23 +01:00
|
|
|
}
|
|
|
|
|
2019-03-31 20:02:16 +02:00
|
|
|
/// The containing trait, if this is a trait method definition.
|
2019-05-23 21:08:10 +03:00
|
|
|
pub fn parent_trait(self, db: &impl DefDatabase) -> Option<Trait> {
|
2019-11-20 16:03:59 +03:00
|
|
|
match self.container(db) {
|
|
|
|
Some(Container::Trait(it)) => Some(it),
|
|
|
|
_ => None,
|
|
|
|
}
|
2019-03-31 20:02:16 +02:00
|
|
|
}
|
|
|
|
|
2019-05-23 21:08:10 +03:00
|
|
|
pub fn container(self, db: &impl DefDatabase) -> Option<Container> {
|
2019-11-20 16:03:59 +03:00
|
|
|
match self.id.lookup(db).container {
|
2019-11-20 17:49:57 +03:00
|
|
|
ContainerId::TraitId(it) => Some(Container::Trait(it.into())),
|
|
|
|
ContainerId::ImplId(it) => Some(Container::ImplBlock(it.into())),
|
|
|
|
ContainerId::ModuleId(_) => None,
|
2019-04-14 11:15:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-23 21:08:10 +03:00
|
|
|
pub fn diagnostics(self, db: &impl HirDatabase, sink: &mut DiagnosticSink) {
|
2019-04-11 00:00:56 +03:00
|
|
|
let infer = self.infer(db);
|
2019-05-23 21:08:10 +03:00
|
|
|
infer.add_diagnostics(db, self, sink);
|
|
|
|
let mut validator = ExprValidator::new(self, infer, sink);
|
2019-04-11 00:00:56 +03:00
|
|
|
validator.validate_body(db);
|
2019-03-21 22:13:11 +03:00
|
|
|
}
|
2019-01-23 16:22:10 -05:00
|
|
|
}
|
2019-01-22 08:55:05 -05:00
|
|
|
|
2019-01-25 00:50:08 +03:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-01-11 20:28:10 +03:00
|
|
|
pub struct Const {
|
2019-01-25 00:50:08 +03:00
|
|
|
pub(crate) id: ConstId,
|
2019-01-11 20:28:10 +03:00
|
|
|
}
|
|
|
|
|
2019-01-11 21:02:12 +03:00
|
|
|
impl Const {
|
2019-05-23 21:08:10 +03:00
|
|
|
pub fn module(self, db: &impl DefDatabase) -> Module {
|
2019-11-20 18:00:01 +03:00
|
|
|
Module { id: self.id.lookup(db).module(db) }
|
2019-02-16 22:06:23 +01:00
|
|
|
}
|
|
|
|
|
2019-09-07 21:03:03 +02:00
|
|
|
pub fn krate(self, db: &impl DefDatabase) -> Option<Crate> {
|
2019-10-30 12:27:54 +03:00
|
|
|
Some(self.module(db).krate())
|
2019-09-07 21:03:03 +02:00
|
|
|
}
|
|
|
|
|
2019-09-23 14:31:30 -04:00
|
|
|
pub fn name(self, db: &impl HirDatabase) -> Option<Name> {
|
2019-11-22 18:51:53 +03:00
|
|
|
db.const_data(self.id).name.clone()
|
2019-09-14 16:26:03 +02:00
|
|
|
}
|
|
|
|
|
2019-05-23 21:08:10 +03:00
|
|
|
pub fn infer(self, db: &impl HirDatabase) -> Arc<InferenceResult> {
|
|
|
|
db.infer(self.into())
|
2019-03-30 11:17:31 +00:00
|
|
|
}
|
|
|
|
|
2019-11-20 18:00:01 +03:00
|
|
|
/// The containing impl block, if this is a type alias.
|
2019-05-23 21:08:10 +03:00
|
|
|
pub fn impl_block(self, db: &impl DefDatabase) -> Option<ImplBlock> {
|
2019-11-20 18:00:01 +03:00
|
|
|
match self.container(db) {
|
|
|
|
Some(Container::ImplBlock(it)) => Some(it),
|
|
|
|
_ => None,
|
|
|
|
}
|
2019-02-16 22:06:23 +01:00
|
|
|
}
|
2019-02-25 09:27:47 +02:00
|
|
|
|
2019-11-20 18:00:01 +03:00
|
|
|
/// The containing trait, if this is a trait type alias definition.
|
2019-10-09 14:59:47 +03:00
|
|
|
pub fn parent_trait(self, db: &impl DefDatabase) -> Option<Trait> {
|
2019-11-20 18:00:01 +03:00
|
|
|
match self.container(db) {
|
|
|
|
Some(Container::Trait(it)) => Some(it),
|
|
|
|
_ => None,
|
|
|
|
}
|
2019-10-09 14:59:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn container(self, db: &impl DefDatabase) -> Option<Container> {
|
2019-11-20 18:00:01 +03:00
|
|
|
match self.id.lookup(db).container {
|
|
|
|
ContainerId::TraitId(it) => Some(Container::Trait(it.into())),
|
|
|
|
ContainerId::ImplId(it) => Some(Container::ImplBlock(it.into())),
|
|
|
|
ContainerId::ModuleId(_) => None,
|
2019-10-09 14:59:47 +03:00
|
|
|
}
|
|
|
|
}
|
2019-01-11 21:02:12 +03:00
|
|
|
}
|
|
|
|
|
2019-01-25 00:50:08 +03:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-01-11 20:28:10 +03:00
|
|
|
pub struct Static {
|
2019-01-25 00:50:08 +03:00
|
|
|
pub(crate) id: StaticId,
|
2019-01-11 20:28:10 +03:00
|
|
|
}
|
|
|
|
|
2019-01-11 21:02:12 +03:00
|
|
|
impl Static {
|
2019-05-23 21:08:10 +03:00
|
|
|
pub fn module(self, db: &impl DefDatabase) -> Module {
|
2019-10-30 13:10:38 +03:00
|
|
|
Module { id: self.id.module(db) }
|
2019-02-16 22:06:23 +01:00
|
|
|
}
|
2019-02-25 10:21:01 +02:00
|
|
|
|
2019-09-07 21:03:03 +02:00
|
|
|
pub fn krate(self, db: &impl DefDatabase) -> Option<Crate> {
|
2019-10-30 12:27:54 +03:00
|
|
|
Some(self.module(db).krate())
|
2019-09-07 21:03:03 +02:00
|
|
|
}
|
|
|
|
|
2019-05-23 21:08:10 +03:00
|
|
|
pub fn infer(self, db: &impl HirDatabase) -> Arc<InferenceResult> {
|
|
|
|
db.infer(self.into())
|
2019-03-30 11:17:31 +00:00
|
|
|
}
|
2019-01-11 21:02:12 +03:00
|
|
|
}
|
|
|
|
|
2019-01-25 01:31:32 +03:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-01-11 20:28:10 +03:00
|
|
|
pub struct Trait {
|
2019-01-25 01:31:32 +03:00
|
|
|
pub(crate) id: TraitId,
|
2019-01-11 20:28:10 +03:00
|
|
|
}
|
|
|
|
|
2019-01-11 21:02:12 +03:00
|
|
|
impl Trait {
|
2019-05-23 21:08:10 +03:00
|
|
|
pub fn module(self, db: &impl DefDatabase) -> Module {
|
2019-10-30 13:10:38 +03:00
|
|
|
Module { id: self.id.module(db) }
|
2019-02-16 22:06:23 +01:00
|
|
|
}
|
|
|
|
|
2019-03-24 17:36:15 +01:00
|
|
|
pub fn name(self, db: &impl DefDatabase) -> Option<Name> {
|
2019-11-22 18:53:39 +03:00
|
|
|
db.trait_data(self.id).name.clone()
|
2019-03-24 17:36:15 +01:00
|
|
|
}
|
|
|
|
|
2019-09-16 22:01:13 +02:00
|
|
|
pub fn items(self, db: &impl DefDatabase) -> Vec<AssocItem> {
|
2019-11-22 18:53:39 +03:00
|
|
|
db.trait_data(self.id).items.iter().map(|it| (*it).into()).collect()
|
2019-03-24 17:36:15 +01:00
|
|
|
}
|
|
|
|
|
2019-09-07 14:31:43 +02:00
|
|
|
fn direct_super_traits(self, db: &impl HirDatabase) -> Vec<Trait> {
|
2019-11-21 14:13:49 +03:00
|
|
|
let resolver = self.id.resolver(db);
|
2019-09-07 14:31:43 +02:00
|
|
|
// returning the iterator directly doesn't easily work because of
|
|
|
|
// lifetime problems, but since there usually shouldn't be more than a
|
|
|
|
// few direct traits this should be fine (we could even use some kind of
|
|
|
|
// SmallVec if performance is a concern)
|
2019-11-21 16:23:02 +03:00
|
|
|
db.generic_params(self.id.into())
|
2019-09-07 14:31:43 +02:00
|
|
|
.where_predicates
|
|
|
|
.iter()
|
|
|
|
.filter_map(|pred| match &pred.type_ref {
|
2019-10-30 17:19:30 +03:00
|
|
|
TypeRef::Path(p) if p.as_ident() == Some(&name::SELF_TYPE) => pred.bound.as_path(),
|
2019-09-07 14:31:43 +02:00
|
|
|
_ => None,
|
|
|
|
})
|
2019-09-12 23:35:53 +03:00
|
|
|
.filter_map(|path| match resolver.resolve_path_in_type_ns_fully(db, path) {
|
2019-11-21 12:21:46 +03:00
|
|
|
Some(TypeNs::TraitId(t)) => Some(t),
|
2019-09-12 23:35:53 +03:00
|
|
|
_ => None,
|
2019-09-07 14:31:43 +02:00
|
|
|
})
|
2019-11-21 12:21:46 +03:00
|
|
|
.map(Trait::from)
|
2019-09-07 14:31:43 +02:00
|
|
|
.collect()
|
|
|
|
}
|
|
|
|
|
2019-09-07 16:24:26 +02:00
|
|
|
/// Returns an iterator over the whole super trait hierarchy (including the
|
|
|
|
/// trait itself).
|
2019-09-07 16:39:05 +02:00
|
|
|
pub fn all_super_traits(self, db: &impl HirDatabase) -> Vec<Trait> {
|
|
|
|
// we need to take care a bit here to avoid infinite loops in case of cycles
|
|
|
|
// (i.e. if we have `trait A: B; trait B: A;`)
|
|
|
|
let mut result = vec![self];
|
|
|
|
let mut i = 0;
|
|
|
|
while i < result.len() {
|
|
|
|
let t = result[i];
|
|
|
|
// yeah this is quadratic, but trait hierarchies should be flat
|
|
|
|
// enough that this doesn't matter
|
|
|
|
for tt in t.direct_super_traits(db) {
|
|
|
|
if !result.contains(&tt) {
|
|
|
|
result.push(tt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
result
|
2019-09-07 14:31:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn associated_type_by_name(self, db: &impl DefDatabase, name: &Name) -> Option<TypeAlias> {
|
2019-11-22 18:53:39 +03:00
|
|
|
let trait_data = db.trait_data(self.id);
|
2019-11-21 12:21:46 +03:00
|
|
|
let res =
|
|
|
|
trait_data.associated_types().map(TypeAlias::from).find(|t| &t.name(db) == name)?;
|
|
|
|
Some(res)
|
2019-09-07 14:31:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn associated_type_by_name_including_super_traits(
|
|
|
|
self,
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
name: &Name,
|
|
|
|
) -> Option<TypeAlias> {
|
2019-09-07 16:39:05 +02:00
|
|
|
self.all_super_traits(db).into_iter().find_map(|t| t.associated_type_by_name(db, name))
|
2019-05-12 17:53:44 +02:00
|
|
|
}
|
|
|
|
|
2019-04-20 12:34:36 +02:00
|
|
|
pub fn trait_ref(self, db: &impl HirDatabase) -> TraitRef {
|
|
|
|
TraitRef::for_trait(db, self)
|
|
|
|
}
|
|
|
|
|
2019-05-07 18:53:16 +02:00
|
|
|
pub fn is_auto(self, db: &impl DefDatabase) -> bool {
|
2019-11-22 18:53:39 +03:00
|
|
|
db.trait_data(self.id).auto
|
2019-05-07 18:53:16 +02:00
|
|
|
}
|
2019-01-11 21:02:12 +03:00
|
|
|
}
|
|
|
|
|
2019-01-25 01:31:32 +03:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-02-24 21:36:49 +01:00
|
|
|
pub struct TypeAlias {
|
2019-03-26 19:15:39 +03:00
|
|
|
pub(crate) id: TypeAliasId,
|
2019-01-11 20:28:10 +03:00
|
|
|
}
|
2019-01-11 21:02:12 +03:00
|
|
|
|
2019-02-24 21:36:49 +01:00
|
|
|
impl TypeAlias {
|
2019-05-23 21:08:10 +03:00
|
|
|
pub fn module(self, db: &impl DefDatabase) -> Module {
|
2019-11-20 17:39:58 +03:00
|
|
|
Module { id: self.id.lookup(db).module(db) }
|
2019-02-16 22:06:23 +01:00
|
|
|
}
|
|
|
|
|
2019-08-05 21:13:34 +02:00
|
|
|
pub fn krate(self, db: &impl DefDatabase) -> Option<Crate> {
|
2019-10-30 12:27:54 +03:00
|
|
|
Some(self.module(db).krate())
|
2019-08-05 21:13:34 +02:00
|
|
|
}
|
|
|
|
|
2019-11-20 17:39:58 +03:00
|
|
|
/// The containing impl block, if this is a type alias.
|
2019-05-23 21:08:10 +03:00
|
|
|
pub fn impl_block(self, db: &impl DefDatabase) -> Option<ImplBlock> {
|
2019-11-20 17:39:58 +03:00
|
|
|
match self.container(db) {
|
|
|
|
Some(Container::ImplBlock(it)) => Some(it),
|
|
|
|
_ => None,
|
|
|
|
}
|
2019-02-16 22:06:23 +01:00
|
|
|
}
|
2019-02-24 17:25:41 +01:00
|
|
|
|
2019-11-20 17:39:58 +03:00
|
|
|
/// The containing trait, if this is a trait type alias definition.
|
2019-05-23 21:08:10 +03:00
|
|
|
pub fn parent_trait(self, db: &impl DefDatabase) -> Option<Trait> {
|
2019-11-20 17:39:58 +03:00
|
|
|
match self.container(db) {
|
|
|
|
Some(Container::Trait(it)) => Some(it),
|
|
|
|
_ => None,
|
|
|
|
}
|
2019-04-14 11:15:11 +02:00
|
|
|
}
|
|
|
|
|
2019-05-23 21:08:10 +03:00
|
|
|
pub fn container(self, db: &impl DefDatabase) -> Option<Container> {
|
2019-11-20 17:39:58 +03:00
|
|
|
match self.id.lookup(db).container {
|
2019-11-20 17:49:57 +03:00
|
|
|
ContainerId::TraitId(it) => Some(Container::Trait(it.into())),
|
|
|
|
ContainerId::ImplId(it) => Some(Container::ImplBlock(it.into())),
|
|
|
|
ContainerId::ModuleId(_) => None,
|
2019-04-14 11:15:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-12 17:53:44 +02:00
|
|
|
pub fn type_ref(self, db: &impl DefDatabase) -> Option<TypeRef> {
|
2019-11-22 12:57:40 +03:00
|
|
|
db.type_alias_data(self.id).type_ref.clone()
|
2019-05-12 17:53:44 +02:00
|
|
|
}
|
|
|
|
|
2019-07-03 03:08:39 +09:00
|
|
|
pub fn ty(self, db: &impl HirDatabase) -> Ty {
|
|
|
|
db.type_for_def(self.into(), Namespace::Types)
|
|
|
|
}
|
|
|
|
|
2019-05-12 17:53:44 +02:00
|
|
|
pub fn name(self, db: &impl DefDatabase) -> Name {
|
2019-11-22 12:57:40 +03:00
|
|
|
db.type_alias_data(self.id).name.clone()
|
2019-02-24 17:25:41 +01:00
|
|
|
}
|
2019-01-11 21:02:12 +03:00
|
|
|
}
|
2019-01-23 17:46:14 -05:00
|
|
|
|
2019-05-26 20:10:56 +08:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct MacroDef {
|
|
|
|
pub(crate) id: MacroDefId,
|
|
|
|
}
|
|
|
|
|
2019-06-11 17:54:51 +03:00
|
|
|
impl MacroDef {}
|
2019-06-08 14:48:56 +03:00
|
|
|
|
2019-04-14 11:15:11 +02:00
|
|
|
pub enum Container {
|
|
|
|
Trait(Trait),
|
|
|
|
ImplBlock(ImplBlock),
|
|
|
|
}
|
|
|
|
impl_froms!(Container: Trait, ImplBlock);
|
|
|
|
|
2019-09-14 16:26:03 +02:00
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub enum AssocItem {
|
|
|
|
Function(Function),
|
|
|
|
Const(Const),
|
|
|
|
TypeAlias(TypeAlias),
|
|
|
|
}
|
2019-09-16 22:01:13 +02:00
|
|
|
// FIXME: not every function, ... is actually an assoc item. maybe we should make
|
|
|
|
// sure that you can only turn actual assoc items into AssocItems. 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!(AssocItem: Function, Const, TypeAlias);
|
2019-09-25 21:41:17 +02:00
|
|
|
|
2019-10-09 14:59:47 +03:00
|
|
|
impl AssocItem {
|
|
|
|
pub fn module(self, db: &impl DefDatabase) -> Module {
|
|
|
|
match self {
|
|
|
|
AssocItem::Function(f) => f.module(db),
|
|
|
|
AssocItem::Const(c) => c.module(db),
|
|
|
|
AssocItem::TypeAlias(t) => t.module(db),
|
|
|
|
}
|
|
|
|
}
|
2019-10-31 19:28:33 +01:00
|
|
|
|
|
|
|
pub fn container(self, db: &impl DefDatabase) -> Container {
|
|
|
|
match self {
|
|
|
|
AssocItem::Function(f) => f.container(db),
|
|
|
|
AssocItem::Const(c) => c.container(db),
|
|
|
|
AssocItem::TypeAlias(t) => t.container(db),
|
|
|
|
}
|
|
|
|
.expect("AssocItem without container")
|
|
|
|
}
|
2019-10-09 14:59:47 +03:00
|
|
|
}
|
2019-11-10 00:32:00 +03:00
|
|
|
|
2019-11-21 16:23:02 +03:00
|
|
|
#[derive(Clone, Copy, PartialEq, Eq, Debug, Hash)]
|
|
|
|
pub enum GenericDef {
|
|
|
|
Function(Function),
|
|
|
|
Adt(Adt),
|
|
|
|
Trait(Trait),
|
|
|
|
TypeAlias(TypeAlias),
|
|
|
|
ImplBlock(ImplBlock),
|
|
|
|
// enum variants cannot have generics themselves, but their parent enums
|
|
|
|
// can, and this makes some code easier to write
|
|
|
|
EnumVariant(EnumVariant),
|
|
|
|
// consts can have type parameters from their parents (i.e. associated consts of traits)
|
|
|
|
Const(Const),
|
|
|
|
}
|
|
|
|
impl_froms!(
|
|
|
|
GenericDef: Function,
|
|
|
|
Adt(Struct, Enum, Union),
|
|
|
|
Trait,
|
|
|
|
TypeAlias,
|
|
|
|
ImplBlock,
|
|
|
|
EnumVariant,
|
|
|
|
Const
|
|
|
|
);
|
|
|
|
|
|
|
|
impl From<AssocItem> for GenericDef {
|
|
|
|
fn from(item: AssocItem) -> Self {
|
|
|
|
match item {
|
|
|
|
AssocItem::Function(f) => f.into(),
|
|
|
|
AssocItem::Const(c) => c.into(),
|
|
|
|
AssocItem::TypeAlias(t) => t.into(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-10 00:32:00 +03:00
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
|
|
|
pub struct Local {
|
|
|
|
pub(crate) parent: DefWithBody,
|
|
|
|
pub(crate) pat_id: PatId,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Local {
|
|
|
|
pub fn name(self, db: &impl HirDatabase) -> Option<Name> {
|
2019-11-14 17:37:22 +03:00
|
|
|
let body = self.parent.body(db);
|
2019-11-10 00:32:00 +03:00
|
|
|
match &body[self.pat_id] {
|
|
|
|
Pat::Bind { name, .. } => Some(name.clone()),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_self(self, db: &impl HirDatabase) -> bool {
|
|
|
|
self.name(db) == Some(name::SELF_PARAM)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_mut(self, db: &impl HirDatabase) -> bool {
|
2019-11-14 17:37:22 +03:00
|
|
|
let body = self.parent.body(db);
|
2019-11-10 00:32:00 +03:00
|
|
|
match &body[self.pat_id] {
|
|
|
|
Pat::Bind { mode, .. } => match mode {
|
|
|
|
BindingAnnotation::Mutable | BindingAnnotation::RefMut => true,
|
|
|
|
_ => false,
|
|
|
|
},
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn parent(self, _db: &impl HirDatabase) -> DefWithBody {
|
|
|
|
self.parent
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn module(self, db: &impl HirDatabase) -> Module {
|
|
|
|
self.parent.module(db)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn ty(self, db: &impl HirDatabase) -> Ty {
|
|
|
|
let infer = db.infer(self.parent);
|
|
|
|
infer[self.pat_id].clone()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn source(self, db: &impl HirDatabase) -> Source<Either<ast::BindPat, ast::SelfParam>> {
|
2019-11-14 17:37:22 +03:00
|
|
|
let source_map = self.parent.body_source_map(db);
|
2019-11-10 00:32:00 +03:00
|
|
|
let src = source_map.pat_syntax(self.pat_id).unwrap(); // Hmm...
|
|
|
|
let root = src.file_syntax(db);
|
|
|
|
src.map(|ast| ast.map(|it| it.cast().unwrap().to_node(&root), |it| it.to_node(&root)))
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 17:36:27 +03:00
|
|
|
|
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
|
|
|
pub struct GenericParam {
|
|
|
|
pub(crate) parent: GenericDef,
|
|
|
|
pub(crate) idx: u32,
|
|
|
|
}
|
2019-11-15 21:28:00 +03:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct ImplBlock {
|
|
|
|
pub(crate) id: ImplId,
|
|
|
|
}
|
2019-11-21 14:21:26 +03:00
|
|
|
|
|
|
|
/// For IDE only
|
|
|
|
pub enum ScopeDef {
|
|
|
|
ModuleDef(ModuleDef),
|
|
|
|
MacroDef(MacroDef),
|
2019-11-21 14:22:30 +03:00
|
|
|
GenericParam(GenericParam),
|
2019-11-21 14:21:26 +03:00
|
|
|
ImplSelfType(ImplBlock),
|
|
|
|
AdtSelfType(Adt),
|
|
|
|
Local(Local),
|
|
|
|
Unknown,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<PerNs> for ScopeDef {
|
|
|
|
fn from(def: PerNs) -> Self {
|
|
|
|
def.take_types()
|
|
|
|
.or_else(|| def.take_values())
|
|
|
|
.map(|module_def_id| ScopeDef::ModuleDef(module_def_id.into()))
|
|
|
|
.or_else(|| {
|
|
|
|
def.get_macros().map(|macro_def_id| ScopeDef::MacroDef(macro_def_id.into()))
|
|
|
|
})
|
|
|
|
.unwrap_or(ScopeDef::Unknown)
|
|
|
|
}
|
|
|
|
}
|