rust/crates/ra_hir/src/lib.rs

75 lines
1.6 KiB
Rust
Raw Normal View History

//! HIR (previously known as descriptors) provides a high-level object oriented
//! access to Rust code.
2018-11-28 01:42:26 +01: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-28 01:42:26 +01:00
2019-01-24 17:12:11 +01:00
macro_rules! impl_froms {
($e:ident: $($v:ident), *) => {
$(
impl From<$v> for $e {
fn from(it: $v) -> $e {
$e::$v(it)
}
}
)*
}
}
2018-11-28 02:09:44 +01:00
pub mod db;
2018-11-28 14:19:01 +01:00
#[cfg(test)]
mod mock;
2018-11-28 01:42:26 +01:00
mod query_definitions;
mod path;
pub mod source_binder;
2018-11-28 01:42:26 +01:00
2019-01-01 20:47:10 +01:00
mod ids;
2018-12-31 14:05:07 +01:00
mod macros;
2018-12-27 18:07:21 +01:00
mod name;
2019-01-06 15:33:27 +01:00
mod module_tree;
mod nameres;
mod adt;
mod type_ref;
2018-12-20 21:56:28 +01:00
mod ty;
mod impl_block;
2019-01-05 16:32:07 +01:00
mod expr;
mod generics;
mod docs;
2018-12-08 21:40:55 +01:00
2019-01-06 15:33:27 +01:00
mod code_model_api;
2019-01-04 22:02:05 +01:00
mod code_model_impl;
#[cfg(test)]
mod marks;
2018-11-28 01:42:26 +01:00
use crate::{
db::HirDatabase,
2018-12-27 18:26:15 +01:00
name::{AsName, KnownName},
2019-01-24 23:38:21 +01:00
ids::{SourceItemId, SourceFileItems},
2018-11-28 01:42:26 +01:00
};
2018-11-28 02:09:44 +01:00
pub use self::{
2018-11-28 01:42:26 +01:00
path::{Path, PathKind},
2018-12-27 18:07:21 +01:00
name::Name,
2019-01-24 23:41:36 +01:00
ids::{HirFileId, MacroCallId, MacroCallLoc, HirInterner},
2019-01-01 22:37:36 +01:00
macros::{MacroDef, MacroInput, MacroExpansion},
2019-01-06 15:37:18 +01:00
nameres::{ItemMap, PerNs, Namespace, Resolution},
2019-01-24 23:53:07 +01:00
ty::Ty,
impl_block::{ImplBlock, ImplItem},
2019-01-24 23:53:07 +01:00
docs::{Docs, Documentation},
adt::AdtDef,
expr::{ExprScopes, ScopesWithSyntaxMapping},
2018-11-28 01:42:26 +01:00
};
2019-01-06 15:33:27 +01:00
pub use self::code_model_api::{
Crate, CrateDependency,
2019-01-08 18:11:13 +01:00
Def,
Module, ModuleDef, ModuleSource, Problem,
Struct, Enum, EnumVariant,
2019-01-11 12:00:54 +01:00
Function, FnSignature, ScopeEntryWithSyntax,
2019-01-25 18:32:34 +01:00
StructField, FieldSource,
2019-01-11 19:02:12 +01:00
Static, Const,
Trait, Type,
2019-01-06 15:33:27 +01:00
};