rust/crates/ra_hir/src/lib.rs

88 lines
2.2 KiB
Rust
Raw Normal View History

//! 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
//! applied. So, the relation between syntax and HIR is many-to-one.
2018-11-27 18:42:26 -06: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
)*
}
}
pub mod debug;
2019-04-10 02:12:54 -05:00
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;
pub mod source_binder;
2018-11-27 18:42:26 -06:00
2019-01-01 13:47:10 -06:00
mod ids;
2019-01-06 08:33:27 -06:00
mod nameres;
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-20 14:56:28 -06:00
mod ty;
mod impl_block;
2019-01-05 09:32:07 -06:00
mod expr;
2019-04-14 17:03:54 -05:00
mod lang_item;
mod generics;
2019-01-19 14:23:26 -06:00
mod resolve;
2019-03-21 14:13:11 -05:00
pub mod diagnostics;
mod util;
2018-12-08 14:40:55 -06:00
2019-05-23 13:14:19 -05:00
mod code_model;
2019-01-04 15:02:05 -06:00
2019-09-16 05:48:54 -05:00
pub mod from_source;
#[cfg(test)]
mod marks;
2019-10-30 08:12:55 -05:00
use hir_expand::AstId;
2019-10-29 07:53:25 -05:00
2019-10-30 09:19:30 -05:00
use crate::{ids::MacroFileKind, resolve::Resolver};
2019-10-29 07:53:25 -05:00
pub use crate::{
adt::VariantDef,
2019-10-30 10:50:10 -05:00
code_model::{
docs::{DocDef, Docs, Documentation},
src::{HasBodySource, HasSource, Source},
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-04-13 03:24:09 -05:00
expr::ExprScopes,
2019-09-16 05:48:54 -05:00
from_source::FromSource,
2019-10-09 03:53:32 -05:00
generics::{GenericDef, GenericParam, GenericParams, HasGenericParams},
ids::{HirFileId, MacroCallId, MacroCallLoc, MacroDefId, MacroFile},
impl_block::ImplBlock,
nameres::{ImportId, Namespace, PerNs},
resolve::ScopeDef,
source_binder::{PathResolution, ScopeEntryWithSyntax, SourceAnalyzer},
ty::{
display::HirDisplay, ApplicationTy, CallableDef, Substs, TraitRef, Ty, TypeCtor, TypeWalk,
},
2018-11-27 18:42:26 -06:00
};
2019-10-30 09:24:36 -05:00
pub use hir_def::{
path::{Path, PathKind},
2019-10-30 09:28:30 -05:00
type_ref::Mutability,
2019-10-30 09:24:36 -05:00
};
2019-10-30 10:56:20 -05:00
pub use hir_expand::{either::Either, name::Name};