2019-09-30 03:58:53 -05:00
|
|
|
//! FIXME: write short doc here
|
|
|
|
|
2019-06-11 10:00:08 -05:00
|
|
|
pub(crate) mod src;
|
|
|
|
|
2019-01-08 06:19:37 -06:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
2019-12-03 10:07:56 -06:00
|
|
|
use either::Either;
|
2019-10-30 09:19:30 -05:00
|
|
|
use hir_def::{
|
2019-10-31 08:40:36 -05:00
|
|
|
adt::VariantData,
|
2019-11-27 08:46:02 -06:00
|
|
|
body::{Body, BodySourceMap},
|
2019-10-31 02:51:54 -05:00
|
|
|
builtin_type::BuiltinType,
|
2019-11-23 05:43:38 -06:00
|
|
|
docs::Documentation,
|
2019-11-27 08:46:02 -06:00
|
|
|
expr::{BindingAnnotation, Pat, PatId},
|
2019-12-03 14:24:02 -06:00
|
|
|
nameres::ModuleSource,
|
2019-11-23 07:53:16 -06:00
|
|
|
per_ns::PerNs,
|
2019-11-26 07:59:24 -06:00
|
|
|
resolver::HasResolver,
|
2019-11-26 05:02:57 -06:00
|
|
|
type_ref::{Mutability, TypeRef},
|
2019-12-07 04:50:36 -06:00
|
|
|
AdtId, AstItemDef, ConstId, ContainerId, DefWithBodyId, EnumId, FunctionId, GenericParamId,
|
2019-11-26 05:29:12 -06:00
|
|
|
HasModule, ImplId, LocalEnumVariantId, LocalImportId, LocalModuleId, LocalStructFieldId,
|
|
|
|
Lookup, ModuleId, StaticId, StructId, TraitId, TypeAliasId, UnionId,
|
2019-10-30 09:19:30 -05:00
|
|
|
};
|
2019-11-02 15:42:38 -05:00
|
|
|
use hir_expand::{
|
|
|
|
diagnostics::DiagnosticSink,
|
|
|
|
name::{self, AsName},
|
2019-12-03 14:24:02 -06:00
|
|
|
MacroDefId,
|
2019-11-02 15:42:38 -05:00
|
|
|
};
|
2019-11-27 08:46:02 -06:00
|
|
|
use hir_ty::expr::ExprValidator;
|
2019-12-03 14:24:02 -06:00
|
|
|
use ra_db::{CrateId, Edition};
|
|
|
|
use ra_syntax::ast;
|
2019-01-04 15:02:05 -06:00
|
|
|
|
2019-01-08 06:27:00 -06:00
|
|
|
use crate::{
|
2019-11-22 09:46:39 -06:00
|
|
|
db::{DefDatabase, HirDatabase},
|
2019-11-26 05:02:57 -06:00
|
|
|
ty::display::HirFormatter,
|
2019-11-27 13:21:01 -06:00
|
|
|
ty::{self, InEnvironment, InferenceResult, TraitEnvironment, Ty, TyDefId, TypeCtor, TypeWalk},
|
2019-12-03 10:07:56 -06:00
|
|
|
CallableDef, HirDisplay, InFile, Name,
|
2019-01-08 06:27:00 -06:00
|
|
|
};
|
2019-01-04 15:02:05 -06:00
|
|
|
|
2019-01-08 17:47:12 -06: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-04 15:02:05 -06:00
|
|
|
/// root module.
|
2019-01-23 14:14:13 -06:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-01-04 15:02:05 -06:00
|
|
|
pub struct Crate {
|
2019-01-30 12:18:21 -06:00
|
|
|
pub(crate) crate_id: CrateId,
|
2019-01-04 15:02:05 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct CrateDependency {
|
|
|
|
pub krate: Crate,
|
|
|
|
pub name: Name,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Crate {
|
2019-05-23 12:25:55 -05:00
|
|
|
pub fn crate_id(self) -> CrateId {
|
2019-01-06 04:41:12 -06:00
|
|
|
self.crate_id
|
|
|
|
}
|
2019-02-11 16:11:12 -06:00
|
|
|
|
2019-05-23 12:25:55 -05:00
|
|
|
pub fn dependencies(self, db: &impl DefDatabase) -> Vec<CrateDependency> {
|
2019-05-23 12:30:09 -05: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-04 15:02:05 -06:00
|
|
|
}
|
2019-02-11 16:11:12 -06:00
|
|
|
|
2019-05-23 12:25:55 -05:00
|
|
|
pub fn root_module(self, db: &impl DefDatabase) -> Option<Module> {
|
2019-11-24 09:05:12 -06:00
|
|
|
let module_id = db.crate_def_map(self.crate_id).root;
|
2019-10-30 04:27:54 -05:00
|
|
|
Some(Module::new(self, module_id))
|
2019-01-04 15:02:05 -06:00
|
|
|
}
|
2019-02-09 11:27:11 -06:00
|
|
|
|
2019-05-23 12:25:55 -05:00
|
|
|
pub fn edition(self, db: &impl DefDatabase) -> Edition {
|
2019-02-11 16:11:12 -06:00
|
|
|
let crate_graph = db.crate_graph();
|
|
|
|
crate_graph.edition(self.crate_id)
|
|
|
|
}
|
|
|
|
|
2019-10-14 07:15:47 -05:00
|
|
|
pub fn all(db: &impl DefDatabase) -> Vec<Crate> {
|
|
|
|
db.crate_graph().iter().map(|crate_id| Crate { crate_id }).collect()
|
2019-02-09 11:27:11 -06:00
|
|
|
}
|
2019-01-04 15:02:05 -06:00
|
|
|
}
|
2019-01-04 16:37:40 -06:00
|
|
|
|
2019-01-23 14:14:13 -06:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-01-04 16:37:40 -06:00
|
|
|
pub struct Module {
|
2019-10-30 04:27:54 -05:00
|
|
|
pub(crate) id: ModuleId,
|
2019-01-23 14:14:13 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// The defs which can be visible in the module.
|
2019-03-14 03:25:51 -05:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-01-23 14:14:13 -06:00
|
|
|
pub enum ModuleDef {
|
|
|
|
Module(Module),
|
2019-01-24 06:28:50 -06:00
|
|
|
Function(Function),
|
2019-09-12 16:34:52 -05:00
|
|
|
Adt(Adt),
|
2019-01-24 16:32:47 -06:00
|
|
|
// Can't be directly declared, but can be imported.
|
2019-01-24 14:32:41 -06:00
|
|
|
EnumVariant(EnumVariant),
|
2019-01-24 15:50:08 -06:00
|
|
|
Const(Const),
|
|
|
|
Static(Static),
|
2019-01-24 16:31:32 -06:00
|
|
|
Trait(Trait),
|
2019-02-24 14:36:49 -06:00
|
|
|
TypeAlias(TypeAlias),
|
2019-05-30 06:05:35 -05:00
|
|
|
BuiltinType(BuiltinType),
|
2019-02-24 14:36:49 -06:00
|
|
|
}
|
|
|
|
impl_froms!(
|
|
|
|
ModuleDef: Module,
|
|
|
|
Function,
|
2019-09-12 16:34:52 -05:00
|
|
|
Adt(Struct, Enum, Union),
|
2019-02-24 14:36:49 -06:00
|
|
|
EnumVariant,
|
|
|
|
Const,
|
|
|
|
Static,
|
|
|
|
Trait,
|
2019-05-30 06:05:35 -05:00
|
|
|
TypeAlias,
|
|
|
|
BuiltinType
|
2019-02-24 14:36:49 -06:00
|
|
|
);
|
2019-01-24 08:54:18 -06:00
|
|
|
|
2019-11-23 08:06:04 -06:00
|
|
|
pub use hir_def::attr::Attrs;
|
2019-05-23 13:01:08 -05:00
|
|
|
|
2019-01-04 16:37:40 -06:00
|
|
|
impl Module {
|
2019-11-23 07:49:53 -06:00
|
|
|
pub(crate) fn new(krate: Crate, crate_module_id: LocalModuleId) -> Module {
|
2019-11-27 12:31:51 -06:00
|
|
|
Module { id: ModuleId { krate: krate.crate_id, local_id: crate_module_id } }
|
2019-10-30 04:27:54 -05:00
|
|
|
}
|
|
|
|
|
2019-01-06 07:10:25 -06:00
|
|
|
/// Name of this module.
|
2019-06-01 13:17:57 -05:00
|
|
|
pub fn name(self, db: &impl DefDatabase) -> Option<Name> {
|
2019-10-31 10:45:10 -05:00
|
|
|
let def_map = db.crate_def_map(self.id.krate);
|
2019-11-27 12:31:51 -06:00
|
|
|
let parent = def_map[self.id.local_id].parent?;
|
2019-05-23 13:01:08 -05:00
|
|
|
def_map[parent].children.iter().find_map(|(name, module_id)| {
|
2019-11-27 12:31:51 -06:00
|
|
|
if *module_id == self.id.local_id {
|
2019-05-23 13:01:08 -05:00
|
|
|
Some(name.clone())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
2019-01-06 06:58:45 -06:00
|
|
|
}
|
|
|
|
|
2019-01-04 16:37:40 -06:00
|
|
|
/// Returns the crate this module is part of.
|
2019-10-30 04:27:54 -05:00
|
|
|
pub fn krate(self) -> Crate {
|
|
|
|
Crate { crate_id: self.id.krate }
|
2019-01-04 16:37:40 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-06 07:10:25 -06:00
|
|
|
/// Topmost parent of this module. Every module has a `crate_root`, but some
|
2019-01-08 17:47:12 -06:00
|
|
|
/// might be missing `krate`. This can happen if a module's file is not included
|
2019-02-11 10:18:27 -06:00
|
|
|
/// in the module tree of any target in `Cargo.toml`.
|
2019-05-23 13:01:08 -05:00
|
|
|
pub fn crate_root(self, db: &impl DefDatabase) -> Module {
|
2019-10-31 10:45:10 -05:00
|
|
|
let def_map = db.crate_def_map(self.id.krate);
|
2019-11-24 09:05:12 -06:00
|
|
|
self.with_module_id(def_map.root)
|
2019-01-04 16:37:40 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-04 16:37:40 -06:00
|
|
|
/// Finds a child module with the specified name.
|
2019-11-15 01:26:31 -06:00
|
|
|
pub fn child(self, db: &impl DefDatabase, name: &Name) -> Option<Module> {
|
2019-10-31 10:45:10 -05:00
|
|
|
let def_map = db.crate_def_map(self.id.krate);
|
2019-11-27 12:31:51 -06:00
|
|
|
let child_id = def_map[self.id.local_id].children.get(name)?;
|
2019-05-23 13:01:08 -05:00
|
|
|
Some(self.with_module_id(*child_id))
|
2019-01-04 16:37:40 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-07 06:44:54 -06:00
|
|
|
/// Iterates over all child modules.
|
2019-05-23 13:01:08 -05:00
|
|
|
pub fn children(self, db: &impl DefDatabase) -> impl Iterator<Item = Module> {
|
2019-10-31 10:45:10 -05:00
|
|
|
let def_map = db.crate_def_map(self.id.krate);
|
2019-11-27 12:31:51 -06:00
|
|
|
let children = def_map[self.id.local_id]
|
2019-05-23 13:01:08 -05:00
|
|
|
.children
|
|
|
|
.iter()
|
|
|
|
.map(|(_, module_id)| self.with_module_id(*module_id))
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
children.into_iter()
|
2019-01-07 06:44:54 -06:00
|
|
|
}
|
|
|
|
|
2019-01-06 05:05:03 -06:00
|
|
|
/// Finds a parent module.
|
2019-05-23 13:01:08 -05:00
|
|
|
pub fn parent(self, db: &impl DefDatabase) -> Option<Module> {
|
2019-10-31 10:45:10 -05:00
|
|
|
let def_map = db.crate_def_map(self.id.krate);
|
2019-11-27 12:31:51 -06:00
|
|
|
let parent_id = def_map[self.id.local_id].parent?;
|
2019-05-23 13:01:08 -05:00
|
|
|
Some(self.with_module_id(parent_id))
|
2019-01-06 05:05:03 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-05-23 13:01:08 -05:00
|
|
|
pub fn path_to_root(self, db: &impl HirDatabase) -> Vec<Module> {
|
2019-07-04 21:59:28 -05:00
|
|
|
let mut res = vec![self];
|
|
|
|
let mut curr = self;
|
2019-01-15 09:30:58 -06:00
|
|
|
while let Some(next) = curr.parent(db) {
|
2019-07-04 21:59:28 -05:00
|
|
|
res.push(next);
|
2019-01-06 06:58:45 -06:00
|
|
|
curr = next
|
|
|
|
}
|
2019-01-15 09:30:58 -06:00
|
|
|
res
|
2019-01-06 06:58:45 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-06 06:16:21 -06:00
|
|
|
/// Returns a `ModuleScope`: a set of items, visible in this module.
|
2019-11-23 07:39:53 -06:00
|
|
|
pub fn scope(self, db: &impl HirDatabase) -> Vec<(Name, ScopeDef, Option<Import>)> {
|
2019-11-27 12:31:51 -06:00
|
|
|
db.crate_def_map(self.id.krate)[self.id.local_id]
|
2019-10-31 10:45:10 -05:00
|
|
|
.scope
|
|
|
|
.entries()
|
2019-11-23 07:39:53 -06:00
|
|
|
.map(|(name, res)| {
|
|
|
|
(name.clone(), res.def.into(), res.import.map(|id| Import { parent: self, id }))
|
|
|
|
})
|
2019-10-31 10:45:10 -05:00
|
|
|
.collect()
|
2019-01-06 06:16:21 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-05-23 13:01:08 -05:00
|
|
|
pub fn diagnostics(self, db: &impl HirDatabase, sink: &mut DiagnosticSink) {
|
2019-11-27 12:31:51 -06:00
|
|
|
db.crate_def_map(self.id.krate).add_diagnostics(db, self.id.local_id, sink);
|
2019-03-24 02:21:36 -05:00
|
|
|
for decl in self.declarations(db) {
|
|
|
|
match decl {
|
|
|
|
crate::ModuleDef::Function(f) => f.diagnostics(db, sink),
|
2019-07-05 11:27:20 -05:00
|
|
|
crate::ModuleDef::Module(m) => {
|
|
|
|
// Only add diagnostics from inline modules
|
2019-11-20 00:40:36 -06:00
|
|
|
if let ModuleSource::Module(_) = m.definition_source(db).value {
|
2019-07-05 11:27:20 -05:00
|
|
|
m.diagnostics(db, sink)
|
|
|
|
}
|
|
|
|
}
|
2019-03-24 02:21:36 -05:00
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for impl_block in self.impl_blocks(db) {
|
|
|
|
for item in impl_block.items(db) {
|
2019-09-16 15:01:13 -05:00
|
|
|
if let AssocItem::Function(f) = item {
|
2019-06-03 09:01:10 -05:00
|
|
|
f.diagnostics(db, sink);
|
2019-03-24 02:21:36 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-01-06 06:58:45 -06:00
|
|
|
}
|
2019-01-19 14:23:26 -06:00
|
|
|
|
2019-03-31 13:02:16 -05:00
|
|
|
pub fn declarations(self, db: &impl DefDatabase) -> Vec<ModuleDef> {
|
2019-10-31 10:45:10 -05:00
|
|
|
let def_map = db.crate_def_map(self.id.krate);
|
2019-11-27 12:31:51 -06:00
|
|
|
def_map[self.id.local_id].scope.declarations().map(ModuleDef::from).collect()
|
2019-02-09 11:27:11 -06:00
|
|
|
}
|
|
|
|
|
2019-06-19 15:46:50 -05:00
|
|
|
pub fn impl_blocks(self, db: &impl DefDatabase) -> Vec<ImplBlock> {
|
2019-11-15 12:28:00 -06:00
|
|
|
let def_map = db.crate_def_map(self.id.krate);
|
2019-11-27 12:31:51 -06:00
|
|
|
def_map[self.id.local_id].impls.iter().copied().map(ImplBlock::from).collect()
|
2019-02-09 11:27:11 -06:00
|
|
|
}
|
2019-05-23 13:01:08 -05:00
|
|
|
|
2019-11-23 07:49:53 -06:00
|
|
|
fn with_module_id(self, module_id: LocalModuleId) -> Module {
|
2019-10-30 04:27:54 -05:00
|
|
|
Module::new(self.krate(), module_id)
|
2019-05-23 13:01:08 -05:00
|
|
|
}
|
2019-01-04 16:37:40 -06:00
|
|
|
}
|
2019-01-08 06:19:37 -06:00
|
|
|
|
2019-11-23 07:39:53 -06:00
|
|
|
pub struct Import {
|
|
|
|
pub(crate) parent: Module,
|
2019-11-23 07:49:05 -06:00
|
|
|
pub(crate) id: LocalImportId,
|
2019-11-23 07:39:53 -06:00
|
|
|
}
|
|
|
|
|
2019-01-25 05:21:14 -06:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-01-08 06:27:00 -06:00
|
|
|
pub struct StructField {
|
2019-01-25 11:32:34 -06:00
|
|
|
pub(crate) parent: VariantDef,
|
2019-10-31 08:40:36 -05:00
|
|
|
pub(crate) id: LocalStructFieldId,
|
2019-01-08 06:27:00 -06:00
|
|
|
}
|
|
|
|
|
2019-09-16 05:48:54 -05:00
|
|
|
#[derive(Debug, PartialEq, Eq)]
|
2019-01-25 11:32:34 -06:00
|
|
|
pub enum FieldSource {
|
2019-08-23 07:55:21 -05:00
|
|
|
Named(ast::RecordFieldDef),
|
|
|
|
Pos(ast::TupleFieldDef),
|
2019-01-25 11:32:34 -06:00
|
|
|
}
|
|
|
|
|
2019-01-08 06:27:00 -06:00
|
|
|
impl StructField {
|
2019-01-25 05:21:14 -06:00
|
|
|
pub fn name(&self, db: &impl HirDatabase) -> Name {
|
2019-11-24 13:44:24 -06:00
|
|
|
self.parent.variant_data(db).fields()[self.id].name.clone()
|
2019-01-08 06:27:00 -06:00
|
|
|
}
|
2019-01-18 08:38:11 -06:00
|
|
|
|
2019-01-25 05:21:14 -06:00
|
|
|
pub fn ty(&self, db: &impl HirDatabase) -> Ty {
|
2019-11-24 14:48:39 -06:00
|
|
|
db.field_types(self.parent.into())[self.id].clone()
|
2019-01-25 05:21:14 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn parent_def(&self, _db: &impl HirDatabase) -> VariantDef {
|
|
|
|
self.parent
|
2019-01-08 06:32:27 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-24 08:54:18 -06:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-01-08 06:19:37 -06:00
|
|
|
pub struct Struct {
|
2019-01-24 08:54:18 -06:00
|
|
|
pub(crate) id: StructId,
|
2019-01-08 06:19:37 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Struct {
|
2019-09-26 14:37:03 -05:00
|
|
|
pub fn module(self, db: &impl DefDatabase) -> Module {
|
2019-11-25 08:30:50 -06:00
|
|
|
Module { id: self.id.module(db) }
|
2019-01-08 06:19:37 -06:00
|
|
|
}
|
|
|
|
|
2019-09-26 14:37:03 -05:00
|
|
|
pub fn krate(self, db: &impl DefDatabase) -> Option<Crate> {
|
2019-10-30 04:27:54 -05:00
|
|
|
Some(self.module(db).krate())
|
2019-09-26 14:37:03 -05:00
|
|
|
}
|
|
|
|
|
2019-11-27 14:22:20 -06:00
|
|
|
pub fn name(self, db: &impl DefDatabase) -> Name {
|
2019-11-09 06:34:00 -06:00
|
|
|
db.struct_data(self.id.into()).name.clone()
|
2019-01-08 06:22:57 -06:00
|
|
|
}
|
2019-01-08 06:23:56 -06:00
|
|
|
|
2019-05-23 13:01:08 -05:00
|
|
|
pub fn fields(self, db: &impl HirDatabase) -> Vec<StructField> {
|
2019-11-09 06:34:00 -06:00
|
|
|
db.struct_data(self.id.into())
|
2019-01-09 09:46:02 -06:00
|
|
|
.variant_data
|
|
|
|
.fields()
|
2019-11-24 13:44:24 -06:00
|
|
|
.iter()
|
2019-05-23 13:01:08 -05:00
|
|
|
.map(|(id, _)| StructField { parent: self.into(), id })
|
2019-01-15 09:43:25 -06:00
|
|
|
.collect()
|
2019-01-08 06:23:56 -06:00
|
|
|
}
|
2019-01-07 17:30:49 -06:00
|
|
|
|
2019-05-23 13:01:08 -05:00
|
|
|
pub fn field(self, db: &impl HirDatabase, name: &Name) -> Option<StructField> {
|
2019-11-09 06:34:00 -06:00
|
|
|
db.struct_data(self.id.into())
|
2019-01-25 05:21:14 -06:00
|
|
|
.variant_data
|
|
|
|
.fields()
|
2019-11-24 13:44:24 -06:00
|
|
|
.iter()
|
2019-01-25 05:21:14 -06:00
|
|
|
.find(|(_id, data)| data.name == *name)
|
2019-05-23 13:01:08 -05:00
|
|
|
.map(|(id, _)| StructField { parent: self.into(), id })
|
2019-01-25 05:21:14 -06:00
|
|
|
}
|
|
|
|
|
2019-11-27 08:46:02 -06:00
|
|
|
pub fn ty(self, db: &impl HirDatabase) -> Type {
|
|
|
|
Type::from_def(db, self.id.module(db).krate, self.id)
|
2019-02-17 10:29:51 -06:00
|
|
|
}
|
|
|
|
|
2019-05-23 13:01:08 -05:00
|
|
|
pub fn constructor_ty(self, db: &impl HirDatabase) -> Ty {
|
2019-11-26 12:04:24 -06:00
|
|
|
db.value_ty(self.id.into())
|
2019-01-28 08:26:32 -06:00
|
|
|
}
|
2019-01-26 15:52:04 -06:00
|
|
|
|
2019-11-20 12:08:39 -06:00
|
|
|
fn variant_data(self, db: &impl DefDatabase) -> Arc<VariantData> {
|
|
|
|
db.struct_data(self.id.into()).variant_data.clone()
|
|
|
|
}
|
2019-01-08 06:22:57 -06:00
|
|
|
}
|
|
|
|
|
2019-05-23 12:18:47 -05:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct Union {
|
2019-10-31 10:45:10 -05:00
|
|
|
pub(crate) id: UnionId,
|
2019-05-23 12:18:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Union {
|
2019-11-27 14:22:20 -06:00
|
|
|
pub fn name(self, db: &impl DefDatabase) -> Name {
|
2019-11-25 08:30:50 -06:00
|
|
|
db.union_data(self.id).name.clone()
|
2019-05-23 12:18:47 -05:00
|
|
|
}
|
|
|
|
|
2019-11-20 12:55:33 -06:00
|
|
|
pub fn module(self, db: &impl DefDatabase) -> Module {
|
2019-11-25 08:30:50 -06:00
|
|
|
Module { id: self.id.module(db) }
|
2019-05-23 12:18:47 -05:00
|
|
|
}
|
|
|
|
|
2019-11-27 08:46:02 -06:00
|
|
|
pub fn ty(self, db: &impl HirDatabase) -> Type {
|
|
|
|
Type::from_def(db, self.id.module(db).krate, self.id)
|
2019-06-29 05:40:01 -05:00
|
|
|
}
|
2019-11-26 05:29:12 -06:00
|
|
|
|
|
|
|
pub fn fields(self, db: &impl HirDatabase) -> Vec<StructField> {
|
|
|
|
db.union_data(self.id)
|
|
|
|
.variant_data
|
|
|
|
.fields()
|
|
|
|
.iter()
|
|
|
|
.map(|(id, _)| StructField { parent: self.into(), id })
|
|
|
|
.collect()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn field(self, db: &impl HirDatabase, name: &Name) -> Option<StructField> {
|
|
|
|
db.union_data(self.id)
|
|
|
|
.variant_data
|
|
|
|
.fields()
|
|
|
|
.iter()
|
|
|
|
.find(|(_id, data)| data.name == *name)
|
|
|
|
.map(|(id, _)| StructField { parent: self.into(), id })
|
|
|
|
}
|
|
|
|
|
|
|
|
fn variant_data(self, db: &impl DefDatabase) -> Arc<VariantData> {
|
|
|
|
db.union_data(self.id).variant_data.clone()
|
|
|
|
}
|
2019-05-23 12:18:47 -05:00
|
|
|
}
|
|
|
|
|
2019-01-24 09:56:38 -06:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-01-08 06:22:57 -06:00
|
|
|
pub struct Enum {
|
2019-01-24 09:56:38 -06:00
|
|
|
pub(crate) id: EnumId,
|
2019-01-08 06:22:57 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Enum {
|
2019-09-26 14:37:03 -05:00
|
|
|
pub fn module(self, db: &impl DefDatabase) -> Module {
|
2019-10-30 05:10:38 -05:00
|
|
|
Module { id: self.id.module(db) }
|
2019-01-08 06:22:57 -06:00
|
|
|
}
|
|
|
|
|
2019-09-26 14:37:03 -05:00
|
|
|
pub fn krate(self, db: &impl DefDatabase) -> Option<Crate> {
|
2019-10-30 04:27:54 -05:00
|
|
|
Some(self.module(db).krate())
|
2019-09-26 14:37:03 -05:00
|
|
|
}
|
|
|
|
|
2019-11-27 14:22:20 -06:00
|
|
|
pub fn name(self, db: &impl DefDatabase) -> Name {
|
2019-10-31 08:40:36 -05:00
|
|
|
db.enum_data(self.id).name.clone()
|
2019-01-08 06:22:57 -06:00
|
|
|
}
|
|
|
|
|
2019-05-23 13:01:08 -05:00
|
|
|
pub fn variants(self, db: &impl DefDatabase) -> Vec<EnumVariant> {
|
2019-10-31 08:40:36 -05:00
|
|
|
db.enum_data(self.id)
|
|
|
|
.variants
|
|
|
|
.iter()
|
|
|
|
.map(|(id, _)| EnumVariant { parent: self, id })
|
|
|
|
.collect()
|
2019-01-25 03:41:23 -06:00
|
|
|
}
|
|
|
|
|
2019-05-23 13:01:08 -05:00
|
|
|
pub fn variant(self, db: &impl DefDatabase, name: &Name) -> Option<EnumVariant> {
|
2019-11-27 14:22:20 -06:00
|
|
|
let id = db.enum_data(self.id).variant(name)?;
|
|
|
|
Some(EnumVariant { parent: self, id })
|
2019-01-08 06:19:37 -06:00
|
|
|
}
|
2019-01-07 17:30:49 -06:00
|
|
|
|
2019-11-27 08:46:02 -06:00
|
|
|
pub fn ty(self, db: &impl HirDatabase) -> Type {
|
|
|
|
Type::from_def(db, self.id.module(db).krate, self.id)
|
2019-01-28 08:26:32 -06:00
|
|
|
}
|
2019-01-08 06:19:37 -06:00
|
|
|
}
|
2019-01-08 11:11:13 -06:00
|
|
|
|
2019-01-24 14:32:41 -06:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-01-08 09:01:19 -06:00
|
|
|
pub struct EnumVariant {
|
2019-01-25 02:35:38 -06:00
|
|
|
pub(crate) parent: Enum,
|
2019-10-31 03:23:30 -05:00
|
|
|
pub(crate) id: LocalEnumVariantId,
|
2019-01-08 09:01:19 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl EnumVariant {
|
2019-07-04 22:01:40 -05:00
|
|
|
pub fn module(self, db: &impl HirDatabase) -> Module {
|
2019-01-25 02:35:38 -06:00
|
|
|
self.parent.module(db)
|
2019-01-08 09:01:19 -06:00
|
|
|
}
|
2019-07-04 22:01:40 -05:00
|
|
|
pub fn parent_enum(self, _db: &impl DefDatabase) -> Enum {
|
2019-01-25 02:35:38 -06:00
|
|
|
self.parent
|
2019-01-08 09:01:19 -06:00
|
|
|
}
|
|
|
|
|
2019-11-27 14:22:20 -06:00
|
|
|
pub fn name(self, db: &impl DefDatabase) -> Name {
|
2019-10-31 08:40:36 -05:00
|
|
|
db.enum_data(self.parent.id).variants[self.id].name.clone()
|
2019-01-08 09:01:19 -06:00
|
|
|
}
|
|
|
|
|
2019-07-04 22:01:40 -05:00
|
|
|
pub fn fields(self, db: &impl HirDatabase) -> Vec<StructField> {
|
2019-01-18 08:38:11 -06:00
|
|
|
self.variant_data(db)
|
|
|
|
.fields()
|
2019-11-24 13:44:24 -06:00
|
|
|
.iter()
|
2019-07-04 22:01:40 -05:00
|
|
|
.map(|(id, _)| StructField { parent: self.into(), id })
|
2019-01-18 08:38:11 -06:00
|
|
|
.collect()
|
|
|
|
}
|
2019-01-25 05:21:14 -06:00
|
|
|
|
2019-07-04 22:01:40 -05:00
|
|
|
pub fn field(self, db: &impl HirDatabase, name: &Name) -> Option<StructField> {
|
2019-01-25 05:21:14 -06:00
|
|
|
self.variant_data(db)
|
|
|
|
.fields()
|
2019-11-24 13:44:24 -06:00
|
|
|
.iter()
|
2019-01-25 05:21:14 -06:00
|
|
|
.find(|(_id, data)| data.name == *name)
|
2019-07-04 22:01:40 -05:00
|
|
|
.map(|(id, _)| StructField { parent: self.into(), id })
|
2019-01-25 05:21:14 -06:00
|
|
|
}
|
2019-10-31 08:40:36 -05: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 09:01:19 -06:00
|
|
|
}
|
|
|
|
|
2019-09-12 16:34:52 -05:00
|
|
|
/// A Data Type
|
2019-09-12 16:10:16 -05:00
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
2019-09-12 16:34:52 -05:00
|
|
|
pub enum Adt {
|
2019-09-12 16:10:16 -05:00
|
|
|
Struct(Struct),
|
|
|
|
Union(Union),
|
|
|
|
Enum(Enum),
|
|
|
|
}
|
2019-09-12 16:34:52 -05:00
|
|
|
impl_froms!(Adt: Struct, Union, Enum);
|
2019-09-12 16:10:16 -05:00
|
|
|
|
2019-09-12 16:34:52 -05:00
|
|
|
impl Adt {
|
2019-11-26 05:02:57 -06:00
|
|
|
pub fn has_non_default_type_params(self, db: &impl HirDatabase) -> bool {
|
|
|
|
let subst = db.generic_defaults(self.into());
|
|
|
|
subst.iter().any(|ty| ty == &Ty::Unknown)
|
|
|
|
}
|
2019-11-26 13:56:07 -06:00
|
|
|
pub fn ty(self, db: &impl HirDatabase) -> Type {
|
|
|
|
let id = AdtId::from(self);
|
|
|
|
Type::from_def(db, id.module(db).krate, id)
|
2019-09-12 16:10:16 -05:00
|
|
|
}
|
|
|
|
|
2019-11-20 13:00:57 -06: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 14:37:03 -05:00
|
|
|
pub fn krate(self, db: &impl HirDatabase) -> Option<Crate> {
|
2019-11-20 13:00:57 -06:00
|
|
|
Some(self.module(db).krate())
|
2019-09-12 16:10:16 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-20 12:08:39 -06:00
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
|
|
|
pub enum VariantDef {
|
|
|
|
Struct(Struct),
|
2019-11-26 05:29:12 -06:00
|
|
|
Union(Union),
|
2019-11-20 12:08:39 -06:00
|
|
|
EnumVariant(EnumVariant),
|
|
|
|
}
|
2019-11-26 05:29:12 -06:00
|
|
|
impl_froms!(VariantDef: Struct, Union, EnumVariant);
|
2019-11-20 12:08:39 -06:00
|
|
|
|
|
|
|
impl VariantDef {
|
|
|
|
pub fn fields(self, db: &impl HirDatabase) -> Vec<StructField> {
|
|
|
|
match self {
|
|
|
|
VariantDef::Struct(it) => it.fields(db),
|
2019-11-26 05:29:12 -06:00
|
|
|
VariantDef::Union(it) => it.fields(db),
|
2019-11-20 12:08:39 -06:00
|
|
|
VariantDef::EnumVariant(it) => it.fields(db),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn module(self, db: &impl HirDatabase) -> Module {
|
|
|
|
match self {
|
|
|
|
VariantDef::Struct(it) => it.module(db),
|
2019-11-26 05:29:12 -06:00
|
|
|
VariantDef::Union(it) => it.module(db),
|
2019-11-20 12:08:39 -06:00
|
|
|
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),
|
2019-11-26 05:29:12 -06:00
|
|
|
VariantDef::Union(it) => it.variant_data(db),
|
2019-11-20 12:08:39 -06:00
|
|
|
VariantDef::EnumVariant(it) => it.variant_data(db),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-30 05:50:00 -05:00
|
|
|
/// The defs which have a body.
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub enum DefWithBody {
|
2019-03-30 06:17:31 -05:00
|
|
|
Function(Function),
|
2019-03-30 05:50:00 -05:00
|
|
|
Static(Static),
|
2019-04-10 16:00:56 -05:00
|
|
|
Const(Const),
|
2019-03-30 05:50:00 -05:00
|
|
|
}
|
|
|
|
|
2019-03-30 06:17:31 -05:00
|
|
|
impl_froms!(DefWithBody: Function, Const, Static);
|
2019-03-30 05:50:00 -05:00
|
|
|
|
2019-03-30 06:17:31 -05:00
|
|
|
impl DefWithBody {
|
2019-10-09 06:59:47 -05: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 05:50:00 -05:00
|
|
|
}
|
|
|
|
|
2019-01-24 06:28:50 -06:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-01-08 11:11:13 -06:00
|
|
|
pub struct Function {
|
2019-01-24 06:28:50 -06:00
|
|
|
pub(crate) id: FunctionId,
|
2019-01-08 11:11:13 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Function {
|
2019-05-23 13:08:10 -05:00
|
|
|
pub fn module(self, db: &impl DefDatabase) -> Module {
|
2019-11-20 07:03:59 -06:00
|
|
|
self.id.lookup(db).module(db).into()
|
2019-01-08 11:11:13 -06:00
|
|
|
}
|
|
|
|
|
2019-09-07 14:03:03 -05:00
|
|
|
pub fn krate(self, db: &impl DefDatabase) -> Option<Crate> {
|
2019-10-30 04:27:54 -05:00
|
|
|
Some(self.module(db).krate())
|
2019-09-07 14:03:03 -05:00
|
|
|
}
|
|
|
|
|
2019-05-23 13:08:10 -05:00
|
|
|
pub fn name(self, db: &impl HirDatabase) -> Name {
|
2019-11-22 08:10:51 -06: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 15:18:13 -06:00
|
|
|
}
|
|
|
|
|
2019-11-24 11:53:42 -06:00
|
|
|
pub fn body_source_map(self, db: &impl HirDatabase) -> Arc<BodySourceMap> {
|
2019-11-14 08:37:22 -06:00
|
|
|
db.body_with_source_map(self.id.into()).1
|
2019-01-08 11:11:13 -06:00
|
|
|
}
|
|
|
|
|
2019-05-23 13:08:10 -05:00
|
|
|
pub fn body(self, db: &impl HirDatabase) -> Arc<Body> {
|
2019-11-14 08:37:22 -06:00
|
|
|
db.body(self.id.into())
|
2019-01-19 14:23:26 -06:00
|
|
|
}
|
|
|
|
|
2019-05-23 13:08:10 -05:00
|
|
|
pub fn ty(self, db: &impl HirDatabase) -> Ty {
|
2019-11-26 12:04:24 -06:00
|
|
|
db.value_ty(self.id.into())
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
|
2019-05-23 13:08:10 -05:00
|
|
|
pub fn infer(self, db: &impl HirDatabase) -> Arc<InferenceResult> {
|
2019-11-27 07:02:33 -06:00
|
|
|
db.infer(self.id.into())
|
2019-01-08 11:11:13 -06:00
|
|
|
}
|
2019-01-12 14:27:35 -06:00
|
|
|
|
2019-02-16 15:06:23 -06:00
|
|
|
/// The containing impl block, if this is a method.
|
2019-05-23 13:08:10 -05:00
|
|
|
pub fn impl_block(self, db: &impl DefDatabase) -> Option<ImplBlock> {
|
2019-11-20 07:03:59 -06:00
|
|
|
match self.container(db) {
|
|
|
|
Some(Container::ImplBlock(it)) => Some(it),
|
|
|
|
_ => None,
|
|
|
|
}
|
2019-02-16 15:06:23 -06:00
|
|
|
}
|
|
|
|
|
2019-03-31 13:02:16 -05:00
|
|
|
/// The containing trait, if this is a trait method definition.
|
2019-05-23 13:08:10 -05:00
|
|
|
pub fn parent_trait(self, db: &impl DefDatabase) -> Option<Trait> {
|
2019-11-20 07:03:59 -06:00
|
|
|
match self.container(db) {
|
|
|
|
Some(Container::Trait(it)) => Some(it),
|
|
|
|
_ => None,
|
|
|
|
}
|
2019-03-31 13:02:16 -05:00
|
|
|
}
|
|
|
|
|
2019-05-23 13:08:10 -05:00
|
|
|
pub fn container(self, db: &impl DefDatabase) -> Option<Container> {
|
2019-11-20 07:03:59 -06:00
|
|
|
match self.id.lookup(db).container {
|
2019-11-20 08:49:57 -06:00
|
|
|
ContainerId::TraitId(it) => Some(Container::Trait(it.into())),
|
|
|
|
ContainerId::ImplId(it) => Some(Container::ImplBlock(it.into())),
|
|
|
|
ContainerId::ModuleId(_) => None,
|
2019-04-14 04:15:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-23 13:08:10 -05:00
|
|
|
pub fn diagnostics(self, db: &impl HirDatabase, sink: &mut DiagnosticSink) {
|
2019-04-10 16:00:56 -05:00
|
|
|
let infer = self.infer(db);
|
2019-11-27 06:56:20 -06:00
|
|
|
infer.add_diagnostics(db, self.id, sink);
|
2019-11-27 08:46:02 -06:00
|
|
|
let mut validator = ExprValidator::new(self.id, infer, sink);
|
2019-04-10 16:00:56 -05:00
|
|
|
validator.validate_body(db);
|
2019-03-21 14:13:11 -05:00
|
|
|
}
|
2019-01-23 15:22:10 -06:00
|
|
|
}
|
2019-01-22 07:55:05 -06:00
|
|
|
|
2019-01-24 15:50:08 -06:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-01-11 11:28:10 -06:00
|
|
|
pub struct Const {
|
2019-01-24 15:50:08 -06:00
|
|
|
pub(crate) id: ConstId,
|
2019-01-11 11:28:10 -06:00
|
|
|
}
|
|
|
|
|
2019-01-11 12:02:12 -06:00
|
|
|
impl Const {
|
2019-05-23 13:08:10 -05:00
|
|
|
pub fn module(self, db: &impl DefDatabase) -> Module {
|
2019-11-20 09:00:01 -06:00
|
|
|
Module { id: self.id.lookup(db).module(db) }
|
2019-02-16 15:06:23 -06:00
|
|
|
}
|
|
|
|
|
2019-09-07 14:03:03 -05:00
|
|
|
pub fn krate(self, db: &impl DefDatabase) -> Option<Crate> {
|
2019-10-30 04:27:54 -05:00
|
|
|
Some(self.module(db).krate())
|
2019-09-07 14:03:03 -05:00
|
|
|
}
|
|
|
|
|
2019-09-23 13:31:30 -05:00
|
|
|
pub fn name(self, db: &impl HirDatabase) -> Option<Name> {
|
2019-11-22 09:51:53 -06:00
|
|
|
db.const_data(self.id).name.clone()
|
2019-09-14 09:26:03 -05:00
|
|
|
}
|
|
|
|
|
2019-05-23 13:08:10 -05:00
|
|
|
pub fn infer(self, db: &impl HirDatabase) -> Arc<InferenceResult> {
|
2019-11-27 07:02:33 -06:00
|
|
|
db.infer(self.id.into())
|
2019-03-30 06:17:31 -05:00
|
|
|
}
|
|
|
|
|
2019-11-20 09:00:01 -06:00
|
|
|
/// The containing impl block, if this is a type alias.
|
2019-05-23 13:08:10 -05:00
|
|
|
pub fn impl_block(self, db: &impl DefDatabase) -> Option<ImplBlock> {
|
2019-11-20 09:00:01 -06:00
|
|
|
match self.container(db) {
|
|
|
|
Some(Container::ImplBlock(it)) => Some(it),
|
|
|
|
_ => None,
|
|
|
|
}
|
2019-02-16 15:06:23 -06:00
|
|
|
}
|
2019-02-25 01:27:47 -06:00
|
|
|
|
2019-11-20 09:00:01 -06:00
|
|
|
/// The containing trait, if this is a trait type alias definition.
|
2019-10-09 06:59:47 -05:00
|
|
|
pub fn parent_trait(self, db: &impl DefDatabase) -> Option<Trait> {
|
2019-11-20 09:00:01 -06:00
|
|
|
match self.container(db) {
|
|
|
|
Some(Container::Trait(it)) => Some(it),
|
|
|
|
_ => None,
|
|
|
|
}
|
2019-10-09 06:59:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn container(self, db: &impl DefDatabase) -> Option<Container> {
|
2019-11-20 09:00:01 -06: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 06:59:47 -05:00
|
|
|
}
|
|
|
|
}
|
2019-01-11 12:02:12 -06:00
|
|
|
}
|
|
|
|
|
2019-01-24 15:50:08 -06:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-01-11 11:28:10 -06:00
|
|
|
pub struct Static {
|
2019-01-24 15:50:08 -06:00
|
|
|
pub(crate) id: StaticId,
|
2019-01-11 11:28:10 -06:00
|
|
|
}
|
|
|
|
|
2019-01-11 12:02:12 -06:00
|
|
|
impl Static {
|
2019-05-23 13:08:10 -05:00
|
|
|
pub fn module(self, db: &impl DefDatabase) -> Module {
|
2019-11-24 06:13:56 -06:00
|
|
|
Module { id: self.id.lookup(db).module(db) }
|
2019-02-16 15:06:23 -06:00
|
|
|
}
|
2019-02-25 02:21:01 -06:00
|
|
|
|
2019-09-07 14:03:03 -05:00
|
|
|
pub fn krate(self, db: &impl DefDatabase) -> Option<Crate> {
|
2019-10-30 04:27:54 -05:00
|
|
|
Some(self.module(db).krate())
|
2019-09-07 14:03:03 -05:00
|
|
|
}
|
|
|
|
|
2019-05-23 13:08:10 -05:00
|
|
|
pub fn infer(self, db: &impl HirDatabase) -> Arc<InferenceResult> {
|
2019-11-27 07:02:33 -06:00
|
|
|
db.infer(self.id.into())
|
2019-03-30 06:17:31 -05:00
|
|
|
}
|
2019-01-11 12:02:12 -06:00
|
|
|
}
|
|
|
|
|
2019-01-24 16:31:32 -06:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-01-11 11:28:10 -06:00
|
|
|
pub struct Trait {
|
2019-01-24 16:31:32 -06:00
|
|
|
pub(crate) id: TraitId,
|
2019-01-11 11:28:10 -06:00
|
|
|
}
|
|
|
|
|
2019-01-11 12:02:12 -06:00
|
|
|
impl Trait {
|
2019-05-23 13:08:10 -05:00
|
|
|
pub fn module(self, db: &impl DefDatabase) -> Module {
|
2019-10-30 05:10:38 -05:00
|
|
|
Module { id: self.id.module(db) }
|
2019-02-16 15:06:23 -06:00
|
|
|
}
|
|
|
|
|
2019-11-27 14:22:20 -06:00
|
|
|
pub fn name(self, db: &impl DefDatabase) -> Name {
|
2019-11-22 09:53:39 -06:00
|
|
|
db.trait_data(self.id).name.clone()
|
2019-03-24 11:36:15 -05:00
|
|
|
}
|
|
|
|
|
2019-09-16 15:01:13 -05:00
|
|
|
pub fn items(self, db: &impl DefDatabase) -> Vec<AssocItem> {
|
2019-11-26 08:12:16 -06:00
|
|
|
db.trait_data(self.id).items.iter().map(|(_name, it)| (*it).into()).collect()
|
2019-03-24 11:36:15 -05:00
|
|
|
}
|
|
|
|
|
2019-05-07 11:53:16 -05:00
|
|
|
pub fn is_auto(self, db: &impl DefDatabase) -> bool {
|
2019-11-22 09:53:39 -06:00
|
|
|
db.trait_data(self.id).auto
|
2019-05-07 11:53:16 -05:00
|
|
|
}
|
2019-01-11 12:02:12 -06:00
|
|
|
}
|
|
|
|
|
2019-01-24 16:31:32 -06:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-02-24 14:36:49 -06:00
|
|
|
pub struct TypeAlias {
|
2019-03-26 11:15:39 -05:00
|
|
|
pub(crate) id: TypeAliasId,
|
2019-01-11 11:28:10 -06:00
|
|
|
}
|
2019-01-11 12:02:12 -06:00
|
|
|
|
2019-02-24 14:36:49 -06:00
|
|
|
impl TypeAlias {
|
2019-11-26 05:02:57 -06:00
|
|
|
pub fn has_non_default_type_params(self, db: &impl HirDatabase) -> bool {
|
|
|
|
let subst = db.generic_defaults(self.id.into());
|
|
|
|
subst.iter().any(|ty| ty == &Ty::Unknown)
|
|
|
|
}
|
|
|
|
|
2019-05-23 13:08:10 -05:00
|
|
|
pub fn module(self, db: &impl DefDatabase) -> Module {
|
2019-11-20 08:39:58 -06:00
|
|
|
Module { id: self.id.lookup(db).module(db) }
|
2019-02-16 15:06:23 -06:00
|
|
|
}
|
|
|
|
|
2019-08-05 14:13:34 -05:00
|
|
|
pub fn krate(self, db: &impl DefDatabase) -> Option<Crate> {
|
2019-10-30 04:27:54 -05:00
|
|
|
Some(self.module(db).krate())
|
2019-08-05 14:13:34 -05:00
|
|
|
}
|
|
|
|
|
2019-11-20 08:39:58 -06:00
|
|
|
/// The containing impl block, if this is a type alias.
|
2019-05-23 13:08:10 -05:00
|
|
|
pub fn impl_block(self, db: &impl DefDatabase) -> Option<ImplBlock> {
|
2019-11-20 08:39:58 -06:00
|
|
|
match self.container(db) {
|
|
|
|
Some(Container::ImplBlock(it)) => Some(it),
|
|
|
|
_ => None,
|
|
|
|
}
|
2019-02-16 15:06:23 -06:00
|
|
|
}
|
2019-02-24 10:25:41 -06:00
|
|
|
|
2019-11-20 08:39:58 -06:00
|
|
|
/// The containing trait, if this is a trait type alias definition.
|
2019-05-23 13:08:10 -05:00
|
|
|
pub fn parent_trait(self, db: &impl DefDatabase) -> Option<Trait> {
|
2019-11-20 08:39:58 -06:00
|
|
|
match self.container(db) {
|
|
|
|
Some(Container::Trait(it)) => Some(it),
|
|
|
|
_ => None,
|
|
|
|
}
|
2019-04-14 04:15:11 -05:00
|
|
|
}
|
|
|
|
|
2019-05-23 13:08:10 -05:00
|
|
|
pub fn container(self, db: &impl DefDatabase) -> Option<Container> {
|
2019-11-20 08:39:58 -06:00
|
|
|
match self.id.lookup(db).container {
|
2019-11-20 08:49:57 -06:00
|
|
|
ContainerId::TraitId(it) => Some(Container::Trait(it.into())),
|
|
|
|
ContainerId::ImplId(it) => Some(Container::ImplBlock(it.into())),
|
|
|
|
ContainerId::ModuleId(_) => None,
|
2019-04-14 04:15:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-12 10:53:44 -05:00
|
|
|
pub fn type_ref(self, db: &impl DefDatabase) -> Option<TypeRef> {
|
2019-11-22 03:57:40 -06:00
|
|
|
db.type_alias_data(self.id).type_ref.clone()
|
2019-05-12 10:53:44 -05:00
|
|
|
}
|
|
|
|
|
2019-11-26 13:56:07 -06:00
|
|
|
pub fn ty(self, db: &impl HirDatabase) -> Type {
|
|
|
|
Type::from_def(db, self.id.lookup(db).module(db).krate, self.id)
|
2019-07-02 13:08:39 -05:00
|
|
|
}
|
|
|
|
|
2019-05-12 10:53:44 -05:00
|
|
|
pub fn name(self, db: &impl DefDatabase) -> Name {
|
2019-11-22 03:57:40 -06:00
|
|
|
db.type_alias_data(self.id).name.clone()
|
2019-02-24 10:25:41 -06:00
|
|
|
}
|
2019-01-11 12:02:12 -06:00
|
|
|
}
|
2019-01-23 16:46:14 -06:00
|
|
|
|
2019-05-26 07:10:56 -05:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct MacroDef {
|
|
|
|
pub(crate) id: MacroDefId,
|
|
|
|
}
|
|
|
|
|
2019-06-11 09:54:51 -05:00
|
|
|
impl MacroDef {}
|
2019-06-08 06:48:56 -05:00
|
|
|
|
2019-04-14 04:15:11 -05:00
|
|
|
pub enum Container {
|
|
|
|
Trait(Trait),
|
|
|
|
ImplBlock(ImplBlock),
|
|
|
|
}
|
|
|
|
impl_froms!(Container: Trait, ImplBlock);
|
|
|
|
|
2019-09-14 09:26:03 -05:00
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub enum AssocItem {
|
|
|
|
Function(Function),
|
|
|
|
Const(Const),
|
|
|
|
TypeAlias(TypeAlias),
|
|
|
|
}
|
2019-09-16 15:01:13 -05: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 14:41:17 -05:00
|
|
|
|
2019-10-09 06:59:47 -05: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 13:28:33 -05: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 06:59:47 -05:00
|
|
|
}
|
2019-11-09 15:32:00 -06:00
|
|
|
|
2019-11-21 07:23:02 -06: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
|
|
|
|
);
|
|
|
|
|
2019-11-09 15:32:00 -06: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-24 11:53:42 -06:00
|
|
|
let body = db.body(self.parent.into());
|
2019-11-09 15:32:00 -06: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-24 11:53:42 -06:00
|
|
|
let body = db.body(self.parent.into());
|
2019-11-09 15:32:00 -06: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)
|
|
|
|
}
|
|
|
|
|
2019-11-26 05:02:57 -06:00
|
|
|
pub fn ty(self, db: &impl HirDatabase) -> Type {
|
|
|
|
let def = DefWithBodyId::from(self.parent);
|
2019-11-27 07:02:33 -06:00
|
|
|
let infer = db.infer(def);
|
|
|
|
let ty = infer[self.pat_id].clone();
|
2019-11-26 05:02:57 -06:00
|
|
|
let resolver = def.resolver(db);
|
|
|
|
let krate = def.module(db).krate;
|
|
|
|
let environment = TraitEnvironment::lower(db, &resolver);
|
|
|
|
Type { krate, ty: InEnvironment { value: ty, environment } }
|
2019-11-09 15:32:00 -06:00
|
|
|
}
|
|
|
|
|
2019-11-28 03:50:26 -06:00
|
|
|
pub fn source(self, db: &impl HirDatabase) -> InFile<Either<ast::BindPat, ast::SelfParam>> {
|
2019-11-24 11:53:42 -06:00
|
|
|
let (_body, source_map) = db.body_with_source_map(self.parent.into());
|
2019-11-09 15:32:00 -06:00
|
|
|
let src = source_map.pat_syntax(self.pat_id).unwrap(); // Hmm...
|
|
|
|
let root = src.file_syntax(db);
|
2019-12-03 10:07:56 -06:00
|
|
|
src.map(|ast| {
|
|
|
|
ast.map_left(|it| it.cast().unwrap().to_node(&root)).map_right(|it| it.to_node(&root))
|
|
|
|
})
|
2019-11-09 15:32:00 -06:00
|
|
|
}
|
|
|
|
}
|
2019-11-11 08:36:27 -06:00
|
|
|
|
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
|
|
|
pub struct GenericParam {
|
2019-12-07 04:50:36 -06:00
|
|
|
pub(crate) id: GenericParamId,
|
2019-11-11 08:36:27 -06:00
|
|
|
}
|
2019-11-15 12:28:00 -06:00
|
|
|
|
2019-12-07 11:48:35 -06:00
|
|
|
impl GenericParam {
|
|
|
|
pub fn name(self, db: &impl HirDatabase) -> Name {
|
|
|
|
let params = db.generic_params(self.id.parent);
|
|
|
|
params.params[self.id.local_id].name.clone()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-15 12:28:00 -06:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct ImplBlock {
|
|
|
|
pub(crate) id: ImplId,
|
|
|
|
}
|
2019-11-21 05:21:26 -06:00
|
|
|
|
2019-11-24 12:03:24 -06:00
|
|
|
impl ImplBlock {
|
2019-11-26 06:27:33 -06:00
|
|
|
pub fn all_in_crate(db: &impl HirDatabase, krate: Crate) -> Vec<ImplBlock> {
|
|
|
|
let impls = db.impls_in_crate(krate.crate_id);
|
|
|
|
impls.all_impls().map(Self::from).collect()
|
|
|
|
}
|
|
|
|
pub fn for_trait(db: &impl HirDatabase, krate: Crate, trait_: Trait) -> Vec<ImplBlock> {
|
|
|
|
let impls = db.impls_in_crate(krate.crate_id);
|
2019-11-26 13:26:47 -06:00
|
|
|
impls.lookup_impl_blocks_for_trait(trait_.id).map(Self::from).collect()
|
2019-11-26 06:27:33 -06:00
|
|
|
}
|
|
|
|
|
2019-11-24 12:03:24 -06:00
|
|
|
pub fn target_trait(&self, db: &impl DefDatabase) -> Option<TypeRef> {
|
|
|
|
db.impl_data(self.id).target_trait.clone()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn target_type(&self, db: &impl DefDatabase) -> TypeRef {
|
|
|
|
db.impl_data(self.id).target_type.clone()
|
|
|
|
}
|
|
|
|
|
2019-11-27 08:46:02 -06:00
|
|
|
pub fn target_ty(&self, db: &impl HirDatabase) -> Type {
|
|
|
|
let impl_data = db.impl_data(self.id);
|
|
|
|
let resolver = self.id.resolver(db);
|
|
|
|
let environment = TraitEnvironment::lower(db, &resolver);
|
|
|
|
let ty = Ty::from_hir(db, &resolver, &impl_data.target_type);
|
|
|
|
Type { krate: self.id.module(db).krate, ty: InEnvironment { value: ty, environment } }
|
2019-11-24 12:03:24 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn items(&self, db: &impl DefDatabase) -> Vec<AssocItem> {
|
|
|
|
db.impl_data(self.id).items.iter().map(|it| (*it).into()).collect()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_negative(&self, db: &impl DefDatabase) -> bool {
|
|
|
|
db.impl_data(self.id).is_negative
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn module(&self, db: &impl DefDatabase) -> Module {
|
|
|
|
self.id.module(db).into()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn krate(&self, db: &impl DefDatabase) -> Crate {
|
|
|
|
Crate { crate_id: self.module(db).id.krate }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-26 12:18:26 -06:00
|
|
|
#[derive(Clone, PartialEq, Eq, Debug)]
|
2019-11-26 05:02:57 -06:00
|
|
|
pub struct Type {
|
|
|
|
pub(crate) krate: CrateId,
|
|
|
|
pub(crate) ty: InEnvironment<Ty>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Type {
|
2019-11-26 13:56:07 -06:00
|
|
|
fn from_def(
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
krate: CrateId,
|
|
|
|
def: impl HasResolver + Into<TyDefId>,
|
|
|
|
) -> Type {
|
|
|
|
let resolver = def.resolver(db);
|
|
|
|
let environment = TraitEnvironment::lower(db, &resolver);
|
|
|
|
let ty = db.ty(def.into());
|
|
|
|
Type { krate, ty: InEnvironment { value: ty, environment } }
|
|
|
|
}
|
|
|
|
|
2019-11-26 05:02:57 -06:00
|
|
|
pub fn is_bool(&self) -> bool {
|
|
|
|
match &self.ty.value {
|
|
|
|
Ty::Apply(a_ty) => match a_ty.ctor {
|
|
|
|
TypeCtor::Bool => true,
|
|
|
|
_ => false,
|
|
|
|
},
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_mutable_reference(&self) -> bool {
|
|
|
|
match &self.ty.value {
|
|
|
|
Ty::Apply(a_ty) => match a_ty.ctor {
|
|
|
|
TypeCtor::Ref(Mutability::Mut) => true,
|
|
|
|
_ => false,
|
|
|
|
},
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_unknown(&self) -> bool {
|
|
|
|
match &self.ty.value {
|
|
|
|
Ty::Unknown => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: this method is broken, as it doesn't take closures into account.
|
|
|
|
pub fn as_callable(&self) -> Option<CallableDef> {
|
|
|
|
Some(self.ty.value.as_callable()?.0)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn contains_unknown(&self) -> bool {
|
|
|
|
return go(&self.ty.value);
|
|
|
|
|
|
|
|
fn go(ty: &Ty) -> bool {
|
|
|
|
match ty {
|
|
|
|
Ty::Unknown => true,
|
|
|
|
Ty::Apply(a_ty) => a_ty.parameters.iter().any(go),
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn fields(&self, db: &impl HirDatabase) -> Vec<(StructField, Type)> {
|
|
|
|
if let Ty::Apply(a_ty) = &self.ty.value {
|
|
|
|
match a_ty.ctor {
|
2019-11-26 05:29:12 -06:00
|
|
|
ty::TypeCtor::Adt(AdtId::StructId(s)) => {
|
|
|
|
let var_def = s.into();
|
|
|
|
return db
|
|
|
|
.field_types(var_def)
|
|
|
|
.iter()
|
|
|
|
.map(|(local_id, ty)| {
|
|
|
|
let def = StructField { parent: var_def.into(), id: local_id };
|
|
|
|
let ty = ty.clone().subst(&a_ty.parameters);
|
|
|
|
(def, self.derived(ty))
|
|
|
|
})
|
|
|
|
.collect();
|
2019-11-26 05:02:57 -06:00
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
};
|
2019-11-26 05:29:12 -06:00
|
|
|
Vec::new()
|
2019-11-26 05:02:57 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn tuple_fields(&self, _db: &impl HirDatabase) -> Vec<Type> {
|
|
|
|
let mut res = Vec::new();
|
|
|
|
if let Ty::Apply(a_ty) = &self.ty.value {
|
|
|
|
match a_ty.ctor {
|
|
|
|
ty::TypeCtor::Tuple { .. } => {
|
|
|
|
for ty in a_ty.parameters.iter() {
|
|
|
|
let ty = ty.clone().subst(&a_ty.parameters);
|
|
|
|
res.push(self.derived(ty));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
res
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn variant_fields(
|
|
|
|
&self,
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
def: VariantDef,
|
|
|
|
) -> Vec<(StructField, Type)> {
|
|
|
|
// FIXME: check that ty and def match
|
|
|
|
match &self.ty.value {
|
|
|
|
Ty::Apply(a_ty) => def
|
|
|
|
.fields(db)
|
|
|
|
.into_iter()
|
|
|
|
.map(|it| (it, self.derived(it.ty(db).subst(&a_ty.parameters))))
|
|
|
|
.collect(),
|
|
|
|
_ => Vec::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn autoderef<'a>(&'a self, db: &'a impl HirDatabase) -> impl Iterator<Item = Type> + 'a {
|
|
|
|
// There should be no inference vars in types passed here
|
|
|
|
// FIXME check that?
|
|
|
|
let canonical = crate::ty::Canonical { value: self.ty.value.clone(), num_vars: 0 };
|
|
|
|
let environment = self.ty.environment.clone();
|
|
|
|
let ty = InEnvironment { value: canonical, environment: environment.clone() };
|
|
|
|
ty::autoderef(db, Some(self.krate), ty)
|
|
|
|
.map(|canonical| canonical.value)
|
|
|
|
.map(move |ty| self.derived(ty))
|
|
|
|
}
|
|
|
|
|
2019-11-26 13:56:07 -06:00
|
|
|
// This would be nicer if it just returned an iterator, but that runs into
|
|
|
|
// lifetime problems, because we need to borrow temp `CrateImplBlocks`.
|
|
|
|
pub fn iterate_impl_items<T>(
|
|
|
|
self,
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
krate: Crate,
|
|
|
|
mut callback: impl FnMut(AssocItem) -> Option<T>,
|
|
|
|
) -> Option<T> {
|
|
|
|
for krate in self.ty.value.def_crates(db, krate.crate_id)? {
|
|
|
|
let impls = db.impls_in_crate(krate);
|
|
|
|
|
|
|
|
for impl_block in impls.lookup_impl_blocks(&self.ty.value) {
|
|
|
|
for &item in db.impl_data(impl_block).items.iter() {
|
|
|
|
if let Some(result) = callback(item.into()) {
|
|
|
|
return Some(result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2019-11-26 05:02:57 -06:00
|
|
|
// FIXME: remove
|
|
|
|
pub fn into_ty(self) -> Ty {
|
|
|
|
self.ty.value
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn as_adt(&self) -> Option<Adt> {
|
|
|
|
let (adt, _subst) = self.ty.value.as_adt()?;
|
2019-11-26 12:25:17 -06:00
|
|
|
Some(adt.into())
|
2019-11-26 05:02:57 -06:00
|
|
|
}
|
|
|
|
|
2019-11-27 08:46:02 -06:00
|
|
|
// FIXME: provide required accessors such that it becomes implementable from outside.
|
|
|
|
pub fn is_equal_for_find_impls(&self, other: &Type) -> bool {
|
|
|
|
match (&self.ty.value, &other.ty.value) {
|
|
|
|
(Ty::Apply(a_original_ty), Ty::Apply(ty::ApplicationTy { ctor, parameters })) => {
|
|
|
|
match ctor {
|
|
|
|
TypeCtor::Ref(..) => match parameters.as_single() {
|
|
|
|
Ty::Apply(a_ty) => a_original_ty.ctor == a_ty.ctor,
|
|
|
|
_ => false,
|
|
|
|
},
|
|
|
|
_ => a_original_ty.ctor == *ctor,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-26 05:02:57 -06:00
|
|
|
fn derived(&self, ty: Ty) -> Type {
|
|
|
|
Type {
|
|
|
|
krate: self.krate,
|
|
|
|
ty: InEnvironment { value: ty, environment: self.ty.environment.clone() },
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl HirDisplay for Type {
|
|
|
|
fn hir_fmt(&self, f: &mut HirFormatter<impl HirDatabase>) -> std::fmt::Result {
|
|
|
|
self.ty.value.hir_fmt(f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-21 05:21:26 -06:00
|
|
|
/// For IDE only
|
|
|
|
pub enum ScopeDef {
|
|
|
|
ModuleDef(ModuleDef),
|
|
|
|
MacroDef(MacroDef),
|
2019-11-21 05:22:30 -06:00
|
|
|
GenericParam(GenericParam),
|
2019-11-21 05:21:26 -06: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(|| {
|
2019-11-24 08:00:10 -06:00
|
|
|
def.take_macros().map(|macro_def_id| ScopeDef::MacroDef(macro_def_id.into()))
|
2019-11-21 05:21:26 -06:00
|
|
|
})
|
|
|
|
.unwrap_or(ScopeDef::Unknown)
|
|
|
|
}
|
|
|
|
}
|
2019-11-23 02:14:10 -06:00
|
|
|
|
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
|
|
|
pub enum AttrDef {
|
|
|
|
Module(Module),
|
|
|
|
StructField(StructField),
|
|
|
|
Adt(Adt),
|
|
|
|
Function(Function),
|
|
|
|
EnumVariant(EnumVariant),
|
|
|
|
Static(Static),
|
|
|
|
Const(Const),
|
|
|
|
Trait(Trait),
|
|
|
|
TypeAlias(TypeAlias),
|
|
|
|
MacroDef(MacroDef),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl_froms!(
|
|
|
|
AttrDef: Module,
|
|
|
|
StructField,
|
|
|
|
Adt(Struct, Enum, Union),
|
|
|
|
EnumVariant,
|
|
|
|
Static,
|
|
|
|
Const,
|
|
|
|
Function,
|
|
|
|
Trait,
|
|
|
|
TypeAlias,
|
|
|
|
MacroDef
|
|
|
|
);
|
|
|
|
|
|
|
|
pub trait HasAttrs {
|
|
|
|
fn attrs(self, db: &impl DefDatabase) -> Attrs;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: Into<AttrDef>> HasAttrs for T {
|
|
|
|
fn attrs(self, db: &impl DefDatabase) -> Attrs {
|
2019-11-23 05:43:38 -06:00
|
|
|
let def: AttrDef = self.into();
|
|
|
|
db.attrs(def.into())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Docs {
|
|
|
|
fn docs(&self, db: &impl HirDatabase) -> Option<Documentation>;
|
|
|
|
}
|
|
|
|
impl<T: Into<AttrDef> + Copy> Docs for T {
|
|
|
|
fn docs(&self, db: &impl HirDatabase) -> Option<Documentation> {
|
|
|
|
let def: AttrDef = (*self).into();
|
|
|
|
db.documentation(def.into())
|
2019-11-23 02:14:10 -06:00
|
|
|
}
|
|
|
|
}
|