87 lines
2.0 KiB
Rust
Raw Normal View History

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