rust/crates/ra_hir/src/lib.rs

64 lines
1.8 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
)*
}
}
2018-11-27 19:09:44 -06:00
pub mod db;
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-08 05:57:13 -06:00
Adt, AssocItem, AttrDef, Const, Container, Crate, CrateDependency, DefWithBody, Docs, Enum,
EnumVariant, FieldSource, Function, GenericDef, HasAttrs, ImplBlock, Import, Local,
MacroDef, Module, ModuleDef, ScopeDef, Static, Struct, StructField, Trait, Type, TypeAlias,
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,
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,
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::{
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};