2019-01-08 23:47:12 +00:00
|
|
|
//! HIR (previously known as descriptors) provides a high-level object oriented
|
|
|
|
//! access to Rust code.
|
2018-11-28 00:42:26 +00: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 23:47:12 +00:00
|
|
|
//! applied. So, the relation between syntax and HIR is many-to-one.
|
2018-11-28 00:42:26 +00:00
|
|
|
|
2019-09-30 08:58:53 +00:00
|
|
|
#![recursion_limit = "512"]
|
|
|
|
|
2019-01-24 16:12:11 +00:00
|
|
|
macro_rules! impl_froms {
|
2019-09-12 21:31:04 +00:00
|
|
|
($e:ident: $($v:ident $(($($sv:ident),*))?),*) => {
|
2019-01-24 16:12:11 +00:00
|
|
|
$(
|
|
|
|
impl From<$v> for $e {
|
|
|
|
fn from(it: $v) -> $e {
|
|
|
|
$e::$v(it)
|
|
|
|
}
|
|
|
|
}
|
2019-09-12 21:31:04 +00:00
|
|
|
$($(
|
|
|
|
impl From<$sv> for $e {
|
|
|
|
fn from(it: $sv) -> $e {
|
|
|
|
$e::$v($v::$sv(it))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)*)?
|
2019-01-24 16:12:11 +00:00
|
|
|
)*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-10 07:12:54 +00:00
|
|
|
mod either;
|
2019-09-08 06:48:45 +00:00
|
|
|
pub mod debug;
|
2019-04-10 07:12:54 +00:00
|
|
|
|
2018-11-28 01:09:44 +00:00
|
|
|
pub mod db;
|
2019-02-11 10:11:24 +00:00
|
|
|
#[macro_use]
|
2019-02-03 18:26:35 +00:00
|
|
|
pub mod mock;
|
2018-11-28 00:42:26 +00:00
|
|
|
mod path;
|
2018-12-05 10:16:20 +00:00
|
|
|
pub mod source_binder;
|
2018-11-28 00:42:26 +00:00
|
|
|
|
2019-03-26 11:40:34 +00:00
|
|
|
mod source_id;
|
2019-01-01 19:47:10 +00:00
|
|
|
mod ids;
|
2018-12-27 17:07:21 +00:00
|
|
|
mod name;
|
2019-01-06 14:33:27 +00:00
|
|
|
mod nameres;
|
2018-12-24 18:07:48 +00:00
|
|
|
mod adt;
|
2019-03-24 16:36:15 +00:00
|
|
|
mod traits;
|
2019-02-24 16:25:41 +00:00
|
|
|
mod type_alias;
|
2018-12-25 20:14:13 +00:00
|
|
|
mod type_ref;
|
2018-12-20 20:56:28 +00:00
|
|
|
mod ty;
|
2019-09-29 22:52:15 +00:00
|
|
|
mod attr;
|
2018-12-28 13:34:00 +00:00
|
|
|
mod impl_block;
|
2019-01-05 15:32:07 +00:00
|
|
|
mod expr;
|
2019-04-14 22:03:54 +00:00
|
|
|
mod lang_item;
|
2019-01-12 20:27:35 +00:00
|
|
|
mod generics;
|
2019-01-19 20:23:26 +00:00
|
|
|
mod resolve;
|
2019-03-21 19:13:11 +00:00
|
|
|
pub mod diagnostics;
|
2019-10-14 03:56:18 +00:00
|
|
|
mod util;
|
2018-12-08 20:40:55 +00:00
|
|
|
|
2019-05-23 18:14:19 +00:00
|
|
|
mod code_model;
|
2019-01-04 21:02:05 +00:00
|
|
|
|
2019-09-16 10:48:54 +00:00
|
|
|
pub mod from_source;
|
|
|
|
|
2019-01-23 13:05:13 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod marks;
|
|
|
|
|
2018-11-28 00:42:26 +00:00
|
|
|
use crate::{
|
2019-07-04 20:05:17 +00:00
|
|
|
ids::MacroFileKind,
|
2019-07-07 21:29:38 +00:00
|
|
|
name::AsName,
|
2019-04-13 08:02:23 +00:00
|
|
|
resolve::Resolver,
|
2019-07-04 20:05:17 +00:00
|
|
|
source_id::{AstId, FileAstId},
|
2018-11-28 00:42:26 +00:00
|
|
|
};
|
|
|
|
|
2018-11-28 01:09:44 +00:00
|
|
|
pub use self::{
|
2019-09-12 21:10:16 +00:00
|
|
|
adt::VariantDef,
|
2019-07-04 20:05:17 +00:00
|
|
|
either::Either,
|
2019-04-13 08:24:09 +00:00
|
|
|
expr::ExprScopes,
|
2019-09-16 10:48:54 +00:00
|
|
|
from_source::FromSource,
|
2019-10-09 08:53:32 +00:00
|
|
|
generics::{GenericDef, GenericParam, GenericParams, HasGenericParams},
|
2019-07-04 20:05:17 +00:00
|
|
|
ids::{HirFileId, MacroCallId, MacroCallLoc, MacroDefId, MacroFile},
|
2019-09-16 20:01:13 +00:00
|
|
|
impl_block::ImplBlock,
|
2019-07-04 20:05:17 +00:00
|
|
|
name::Name,
|
|
|
|
nameres::{ImportId, Namespace, PerNs},
|
|
|
|
path::{Path, PathKind},
|
2019-09-12 20:35:53 +00:00
|
|
|
resolve::ScopeDef,
|
2019-07-04 20:05:17 +00:00
|
|
|
source_binder::{PathResolution, ScopeEntryWithSyntax, SourceAnalyzer},
|
2019-10-29 12:25:46 +00:00
|
|
|
source_id::AstIdMap,
|
2019-09-03 11:10:00 +00:00
|
|
|
ty::{
|
|
|
|
display::HirDisplay, ApplicationTy, CallableDef, Substs, TraitRef, Ty, TypeCtor, TypeWalk,
|
|
|
|
},
|
2019-07-18 15:49:32 +00:00
|
|
|
type_ref::Mutability,
|
2018-11-28 00:42:26 +00:00
|
|
|
};
|
|
|
|
|
2019-05-23 18:14:19 +00:00
|
|
|
pub use self::code_model::{
|
2019-07-04 20:05:17 +00:00
|
|
|
docs::{DocDef, Docs, Documentation},
|
2019-08-30 18:16:28 +00:00
|
|
|
src::{HasBodySource, HasSource, Source},
|
2019-09-14 14:26:03 +00:00
|
|
|
Adt, AssocItem, BuiltinType, Const, ConstData, Container, Crate, CrateDependency, DefWithBody,
|
|
|
|
Enum, EnumVariant, FieldSource, FnData, Function, HasBody, MacroDef, Module, ModuleDef,
|
|
|
|
ModuleSource, Static, Struct, StructField, Trait, TypeAlias, Union,
|
2019-01-06 14:33:27 +00:00
|
|
|
};
|