rust-analyzer/crates/ra_hir/src/lib.rs

84 lines
1.9 KiB
Rust
Raw Normal View History

//! 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
//! applied. So, the relation between syntax and HIR is many-to-one.
2018-11-28 00:42:26 +00:00
2019-01-24 16:12:11 +00:00
macro_rules! impl_froms {
($e:ident: $($v:ident), *) => {
$(
impl From<$v> for $e {
fn from(it: $v) -> $e {
$e::$v(it)
}
}
)*
}
}
2019-04-10 07:12:54 +00:00
mod either;
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;
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;
mod adt;
2019-03-24 16:36:15 +00:00
mod traits;
2019-02-24 16:25:41 +00:00
mod type_alias;
mod type_ref;
2018-12-20 20:56:28 +00:00
mod ty;
mod impl_block;
2019-01-05 15:32:07 +00:00
mod expr;
mod generics;
mod docs;
2019-01-19 20:23:26 +00:00
mod resolve;
2019-03-21 19:13:11 +00:00
pub mod diagnostics;
2018-12-08 20:40:55 +00:00
2019-01-06 14:33:27 +00:00
mod code_model_api;
2019-01-04 21:02:05 +00:00
mod code_model_impl;
#[cfg(test)]
mod marks;
2018-11-28 00:42:26 +00:00
use crate::{
db::{HirDatabase, DefDatabase},
2018-12-27 17:26:15 +00:00
name::{AsName, KnownName},
2019-03-26 15:27:22 +00:00
source_id::{FileAstId, AstId},
2019-04-13 08:02:23 +00:00
resolve::Resolver,
2018-11-28 00:42:26 +00:00
};
2018-11-28 01:09:44 +00:00
pub use self::{
2019-04-10 07:12:54 +00:00
either::Either,
2018-11-28 00:42:26 +00:00
path::{Path, PathKind},
2018-12-27 17:07:21 +00:00
name::Name,
2019-03-26 16:00:11 +00:00
source_id::{AstIdMap, ErasedFileAstId},
2019-04-09 19:51:22 +00:00
ids::{HirFileId, MacroDefId, MacroCallId, MacroCallLoc},
2019-04-10 07:12:54 +00:00
nameres::{PerNs, Namespace, ImportId},
ty::{Ty, ApplicationTy, TypeCtor, TraitRef, Substs, display::HirDisplay, CallableDef},
impl_block::{ImplBlock, ImplItem},
2019-01-24 22:53:07 +00:00
docs::{Docs, Documentation},
adt::AdtDef,
2019-04-13 08:24:09 +00:00
expr::ExprScopes,
2019-04-13 08:02:23 +00:00
resolve::Resolution,
generics::{GenericParams, GenericParam, HasGenericParams},
2019-04-13 08:24:09 +00:00
source_binder::{SourceAnalyzer, PathResolution, ScopeEntryWithSyntax},
2018-11-28 00:42:26 +00:00
};
2019-01-06 14:33:27 +00:00
pub use self::code_model_api::{
Crate, CrateDependency,
2019-03-30 10:50:00 +00:00
DefWithBody,
2019-03-23 15:35:14 +00:00
Module, ModuleDef, ModuleSource,
Struct, Enum, EnumVariant,
2019-02-24 14:12:10 +00:00
Function, FnSignature,
2019-01-25 17:32:34 +00:00
StructField, FieldSource,
2019-02-25 07:27:47 +00:00
Static, Const, ConstSignature,
Trait, TypeAlias, Container,
2019-01-06 14:33:27 +00:00
};