2019-01-09 00:47:12 +01:00
|
|
|
//! HIR (previously known as descriptors) provides a high-level object oriented
|
|
|
|
//! access to Rust code.
|
2018-11-28 03:42:26 +03:00
|
|
|
//!
|
|
|
|
//! The principal difference between HIR and syntax trees is that HIR is bound
|
|
|
|
//! to a particular crate instance. That is, it has cfg flags and features
|
2019-01-09 00:47:12 +01:00
|
|
|
//! applied. So, the relation between syntax and HIR is many-to-one.
|
2018-11-28 03:42:26 +03:00
|
|
|
|
2019-01-24 19:12:11 +03:00
|
|
|
macro_rules! impl_froms {
|
2019-05-30 14:05:35 +03:00
|
|
|
($e:ident: $($v:ident),*) => {
|
2019-01-24 19:12:11 +03:00
|
|
|
$(
|
|
|
|
impl From<$v> for $e {
|
|
|
|
fn from(it: $v) -> $e {
|
|
|
|
$e::$v(it)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-10 10:12:54 +03:00
|
|
|
mod either;
|
|
|
|
|
2018-11-28 04:09:44 +03:00
|
|
|
pub mod db;
|
2019-02-11 13:11:24 +03:00
|
|
|
#[macro_use]
|
2019-02-03 21:26:35 +03:00
|
|
|
pub mod mock;
|
2018-11-28 03:42:26 +03:00
|
|
|
mod path;
|
2018-12-05 13:16:20 +03:00
|
|
|
pub mod source_binder;
|
2018-11-28 03:42:26 +03:00
|
|
|
|
2019-03-26 14:40:34 +03:00
|
|
|
mod source_id;
|
2019-01-01 22:47:10 +03:00
|
|
|
mod ids;
|
2018-12-27 20:07:21 +03:00
|
|
|
mod name;
|
2019-01-06 17:33:27 +03:00
|
|
|
mod nameres;
|
2018-12-24 19:07:48 +01:00
|
|
|
mod adt;
|
2019-03-24 17:36:15 +01:00
|
|
|
mod traits;
|
2019-02-24 17:25:41 +01:00
|
|
|
mod type_alias;
|
2018-12-25 21:14:13 +01:00
|
|
|
mod type_ref;
|
2018-12-20 21:56:28 +01:00
|
|
|
mod ty;
|
2018-12-28 14:34:00 +01:00
|
|
|
mod impl_block;
|
2019-01-05 16:32:07 +01:00
|
|
|
mod expr;
|
2019-04-15 00:03:54 +02:00
|
|
|
mod lang_item;
|
2019-01-12 21:27:35 +01:00
|
|
|
mod generics;
|
2019-01-23 16:22:10 -05:00
|
|
|
mod docs;
|
2019-01-19 21:23:26 +01:00
|
|
|
mod resolve;
|
2019-03-21 22:13:11 +03:00
|
|
|
pub mod diagnostics;
|
2018-12-08 23:40:55 +03:00
|
|
|
|
2019-05-23 21:14:19 +03:00
|
|
|
mod code_model;
|
2019-01-05 00:02:05 +03:00
|
|
|
|
2019-01-23 16:05:13 +03:00
|
|
|
#[cfg(test)]
|
|
|
|
mod marks;
|
|
|
|
|
2018-11-28 03:42:26 +03:00
|
|
|
use crate::{
|
2019-06-01 21:17:57 +03:00
|
|
|
db::{AstDatabase, DefDatabase, HirDatabase},
|
2018-12-27 20:26:15 +03:00
|
|
|
name::{AsName, KnownName},
|
2019-03-26 18:27:22 +03:00
|
|
|
source_id::{FileAstId, AstId},
|
2019-04-13 11:02:23 +03:00
|
|
|
resolve::Resolver,
|
2019-05-14 01:12:07 +03:00
|
|
|
ids::MacroFileKind,
|
2018-11-28 03:42:26 +03:00
|
|
|
};
|
|
|
|
|
2018-11-28 04:09:44 +03:00
|
|
|
pub use self::{
|
2019-04-10 10:12:54 +03:00
|
|
|
either::Either,
|
2018-11-28 03:42:26 +03:00
|
|
|
path::{Path, PathKind},
|
2018-12-27 20:07:21 +03:00
|
|
|
name::Name,
|
2019-03-26 19:00:11 +03:00
|
|
|
source_id::{AstIdMap, ErasedFileAstId},
|
2019-06-02 20:15:10 +03:00
|
|
|
ids::{HirFileId, MacroDefId, MacroCallId, MacroCallLoc, MacroFile},
|
2019-04-10 10:12:54 +03:00
|
|
|
nameres::{PerNs, Namespace, ImportId},
|
2019-03-26 23:07:26 +01:00
|
|
|
ty::{Ty, ApplicationTy, TypeCtor, TraitRef, Substs, display::HirDisplay, CallableDef},
|
2018-12-28 14:34:00 +01:00
|
|
|
impl_block::{ImplBlock, ImplItem},
|
2019-01-25 01:53:07 +03:00
|
|
|
docs::{Docs, Documentation},
|
|
|
|
adt::AdtDef,
|
2019-04-13 11:24:09 +03:00
|
|
|
expr::ExprScopes,
|
2019-04-13 11:02:23 +03:00
|
|
|
resolve::Resolution,
|
2019-04-14 13:07:45 +02:00
|
|
|
generics::{GenericParams, GenericParam, HasGenericParams},
|
2019-04-24 21:16:50 +01:00
|
|
|
source_binder::{SourceAnalyzer, PathResolution, ScopeEntryWithSyntax,MacroByExampleDef},
|
2018-11-28 03:42:26 +03:00
|
|
|
};
|
|
|
|
|
2019-05-23 21:14:19 +03:00
|
|
|
pub use self::code_model::{
|
2019-01-06 17:33:27 +03:00
|
|
|
Crate, CrateDependency,
|
2019-03-30 10:50:00 +00:00
|
|
|
DefWithBody,
|
2019-03-23 18:35:14 +03:00
|
|
|
Module, ModuleDef, ModuleSource,
|
2019-05-23 20:18:47 +03:00
|
|
|
Struct, Union, Enum, EnumVariant,
|
2019-02-24 15:12:10 +01:00
|
|
|
Function, FnSignature,
|
2019-01-25 20:32:34 +03:00
|
|
|
StructField, FieldSource,
|
2019-02-25 09:27:47 +02:00
|
|
|
Static, Const, ConstSignature,
|
2019-05-30 14:05:35 +03:00
|
|
|
Trait, TypeAlias, MacroDef, Container,
|
|
|
|
BuiltinType,
|
2019-01-06 17:33:27 +03:00
|
|
|
};
|