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-09-30 11:58:53 +03:00
|
|
|
#![recursion_limit = "512"]
|
|
|
|
|
2019-01-24 19:12:11 +03:00
|
|
|
macro_rules! impl_froms {
|
2019-09-13 00:31:04 +03:00
|
|
|
($e:ident: $($v:ident $(($($sv:ident),*))?),*) => {
|
2019-01-24 19:12:11 +03:00
|
|
|
$(
|
|
|
|
impl From<$v> for $e {
|
|
|
|
fn from(it: $v) -> $e {
|
|
|
|
$e::$v(it)
|
|
|
|
}
|
|
|
|
}
|
2019-09-13 00:31:04 +03:00
|
|
|
$($(
|
|
|
|
impl From<$sv> for $e {
|
|
|
|
fn from(it: $sv) -> $e {
|
|
|
|
$e::$v($v::$sv(it))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)*)?
|
2019-01-24 19:12:11 +03:00
|
|
|
)*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-08 09:48:45 +03:00
|
|
|
pub mod debug;
|
2019-04-10 10:12:54 +03:00
|
|
|
|
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-12-05 13:16:20 +03:00
|
|
|
pub mod source_binder;
|
2018-11-28 03:42:26 +03:00
|
|
|
|
2019-01-01 22:47:10 +03:00
|
|
|
mod ids;
|
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-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-19 21:23:26 +01:00
|
|
|
mod resolve;
|
2019-03-21 22:13:11 +03:00
|
|
|
pub mod diagnostics;
|
2019-10-14 12:56:18 +09:00
|
|
|
mod util;
|
2018-12-08 23:40:55 +03:00
|
|
|
|
2019-10-31 18:45:10 +03:00
|
|
|
mod from_id;
|
2019-05-23 21:14:19 +03:00
|
|
|
mod code_model;
|
2019-01-05 00:02:05 +03:00
|
|
|
|
2019-09-16 13:48:54 +03:00
|
|
|
pub mod from_source;
|
|
|
|
|
2019-01-23 16:05:13 +03:00
|
|
|
#[cfg(test)]
|
|
|
|
mod marks;
|
|
|
|
|
2019-10-30 16:12:55 +03:00
|
|
|
use hir_expand::AstId;
|
2019-10-29 15:53:25 +03:00
|
|
|
|
2019-10-30 17:19:30 +03:00
|
|
|
use crate::{ids::MacroFileKind, resolve::Resolver};
|
2019-10-29 15:53:25 +03:00
|
|
|
|
|
|
|
pub use crate::{
|
2019-09-13 00:10:16 +03:00
|
|
|
adt::VariantDef,
|
2019-10-30 18:50:10 +03:00
|
|
|
code_model::{
|
|
|
|
docs::{DocDef, Docs, Documentation},
|
2019-11-02 23:11:05 +03:00
|
|
|
src::{HasBodySource, HasSource},
|
2019-10-31 10:51:54 +03:00
|
|
|
Adt, AssocItem, Const, ConstData, Container, Crate, CrateDependency, DefWithBody, Enum,
|
|
|
|
EnumVariant, FieldSource, FnData, Function, HasBody, MacroDef, Module, ModuleDef,
|
|
|
|
ModuleSource, Static, Struct, StructField, Trait, TypeAlias, Union,
|
2019-10-30 18:50:10 +03:00
|
|
|
},
|
2019-04-13 11:24:09 +03:00
|
|
|
expr::ExprScopes,
|
2019-09-16 13:48:54 +03:00
|
|
|
from_source::FromSource,
|
2019-10-09 11:53:32 +03:00
|
|
|
generics::{GenericDef, GenericParam, GenericParams, HasGenericParams},
|
2019-07-04 23:05:17 +03:00
|
|
|
ids::{HirFileId, MacroCallId, MacroCallLoc, MacroDefId, MacroFile},
|
2019-09-16 22:01:13 +02:00
|
|
|
impl_block::ImplBlock,
|
2019-07-04 23:05:17 +03:00
|
|
|
nameres::{ImportId, Namespace, PerNs},
|
2019-09-12 23:35:53 +03:00
|
|
|
resolve::ScopeDef,
|
2019-07-04 23:05:17 +03:00
|
|
|
source_binder::{PathResolution, ScopeEntryWithSyntax, SourceAnalyzer},
|
2019-09-03 13:10:00 +02:00
|
|
|
ty::{
|
|
|
|
display::HirDisplay, ApplicationTy, CallableDef, Substs, TraitRef, Ty, TypeCtor, TypeWalk,
|
|
|
|
},
|
2018-11-28 03:42:26 +03:00
|
|
|
};
|
|
|
|
|
2019-10-30 17:24:36 +03:00
|
|
|
pub use hir_def::{
|
2019-10-31 10:51:54 +03:00
|
|
|
builtin_type::BuiltinType,
|
2019-10-30 17:24:36 +03:00
|
|
|
path::{Path, PathKind},
|
2019-10-30 17:28:30 +03:00
|
|
|
type_ref::Mutability,
|
2019-10-30 17:24:36 +03:00
|
|
|
};
|
2019-11-02 23:11:05 +03:00
|
|
|
pub use hir_expand::{either::Either, name::Name, Source};
|