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 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 {
($e:ident: $($v:ident), *) => {
$(
impl From<$v> for $e {
fn from(it: $v) -> $e {
$e::$v(it)
}
}
)*
}
}
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-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;
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-01-06 17:33:27 +03:00
mod code_model_api;
2019-01-05 00:02:05 +03:00
mod code_model_impl;
#[cfg(test)]
mod marks;
2018-11-28 03:42:26 +03:00
use crate::{
db::{HirDatabase, DefDatabase},
2018-12-27 20:26:15 +03:00
name::{AsName, KnownName},
2019-01-25 01:38:21 +03:00
ids::{SourceItemId, SourceFileItems},
2018-11-28 03:42:26 +03:00
};
2018-11-28 04:09:44 +03:00
pub use self::{
2018-11-28 03:42:26 +03:00
path::{Path, PathKind},
2018-12-27 20:07:21 +03:00
name::Name,
2019-03-26 14:13:17 +03:00
ids::{HirFileId, MacroDefId, MacroCallId, MacroCallLoc, HirInterner},
2019-03-14 12:54:03 +03:00
nameres::{PerNs, Namespace},
2019-03-21 22:20:03 +01:00
ty::{Ty, ApplicationTy, TypeCtor, Substs, display::HirDisplay},
impl_block::{ImplBlock, ImplItem},
2019-01-25 01:53:07 +03:00
docs::{Docs, Documentation},
adt::AdtDef,
2019-03-02 16:38:28 +03:00
expr::{ExprScopes, ScopesWithSourceMap, ScopeEntryWithSyntax},
2019-01-26 22:52:04 +01:00
resolve::{Resolver, Resolution},
2018-11-28 03:42:26 +03:00
};
2019-01-06 17:33:27 +03:00
pub use self::code_model_api::{
Crate, CrateDependency,
2019-03-23 18:35:14 +03:00
Module, ModuleDef, ModuleSource,
Struct, 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-02-24 21:36:49 +01:00
Trait, TypeAlias,
2019-01-06 17:33:27 +03:00
};