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