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-09-30 03:58:53 -05:00
|
|
|
#![recursion_limit = "512"]
|
|
|
|
|
2019-01-24 10:12:11 -06:00
|
|
|
macro_rules! impl_froms {
|
2019-09-12 16:31:04 -05:00
|
|
|
($e:ident: $($v:ident $(($($sv:ident),*))?),*) => {
|
2019-01-24 10:12:11 -06:00
|
|
|
$(
|
|
|
|
impl From<$v> for $e {
|
|
|
|
fn from(it: $v) -> $e {
|
|
|
|
$e::$v(it)
|
|
|
|
}
|
|
|
|
}
|
2019-09-12 16:31:04 -05:00
|
|
|
$($(
|
|
|
|
impl From<$sv> for $e {
|
|
|
|
fn from(it: $sv) -> $e {
|
|
|
|
$e::$v($v::$sv(it))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)*)?
|
2019-01-24 10:12:11 -06:00
|
|
|
)*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-27 19:09:44 -06:00
|
|
|
pub mod db;
|
2018-12-05 04:16:20 -06:00
|
|
|
pub mod source_binder;
|
2018-11-27 18:42:26 -06:00
|
|
|
|
2019-03-21 14:13:11 -05:00
|
|
|
pub mod diagnostics;
|
2018-12-08 14:40:55 -06:00
|
|
|
|
2019-10-31 10:45:10 -05:00
|
|
|
mod from_id;
|
2019-05-23 13:14:19 -05:00
|
|
|
mod code_model;
|
2019-01-04 15:02:05 -06:00
|
|
|
|
2019-12-08 05:57:13 -06:00
|
|
|
mod has_source;
|
|
|
|
mod from_source;
|
2019-09-16 05:48:54 -05:00
|
|
|
|
2019-10-29 07:53:25 -05:00
|
|
|
pub use crate::{
|
2019-10-30 10:50:10 -05:00
|
|
|
code_model::{
|
2019-12-19 11:07:39 -06:00
|
|
|
Adt, AssocItem, AttrDef, Const, Crate, CrateDependency, DefWithBody, Docs, Enum,
|
2019-12-21 08:17:10 -06:00
|
|
|
EnumVariant, FieldSource, Function, GenericDef, HasAttrs, ImplBlock, Local, MacroDef,
|
|
|
|
Module, ModuleDef, ScopeDef, Static, Struct, StructField, Trait, Type, TypeAlias,
|
2019-12-08 05:57:13 -06:00
|
|
|
TypeParam, Union, VariantDef,
|
2019-10-30 10:50:10 -05:00
|
|
|
},
|
2019-09-16 05:48:54 -05:00
|
|
|
from_source::FromSource,
|
2019-12-08 05:57:13 -06:00
|
|
|
has_source::HasSource,
|
2019-07-04 15:05:17 -05:00
|
|
|
source_binder::{PathResolution, ScopeEntryWithSyntax, SourceAnalyzer},
|
2018-11-27 18:42:26 -06:00
|
|
|
};
|
|
|
|
|
2019-10-30 09:24:36 -05:00
|
|
|
pub use hir_def::{
|
2019-11-27 08:46:02 -06:00
|
|
|
body::scope::ExprScopes,
|
2019-10-31 02:51:54 -05:00
|
|
|
builtin_type::BuiltinType,
|
2019-11-23 05:43:38 -06:00
|
|
|
docs::Documentation,
|
2019-12-03 14:24:02 -06:00
|
|
|
nameres::ModuleSource,
|
2019-12-13 05:12:36 -06:00
|
|
|
path::{ModPath, Path, PathKind},
|
2019-10-30 09:28:30 -05:00
|
|
|
type_ref::Mutability,
|
2019-10-30 09:24:36 -05:00
|
|
|
};
|
2019-11-24 05:02:08 -06:00
|
|
|
pub use hir_expand::{
|
2019-12-14 11:46:39 -06:00
|
|
|
name::Name, HirFileId, InFile, MacroCallId, MacroCallLoc, MacroDefId, MacroFile, Origin,
|
2019-11-24 05:02:08 -06:00
|
|
|
};
|
2019-12-08 05:44:14 -06:00
|
|
|
pub use hir_ty::{display::HirDisplay, CallableDef};
|