2019-01-08 17:47:12 -06:00
|
|
|
//! 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
|
2019-01-08 17:47:12 -06:00
|
|
|
//! applied. So, the relation between syntax and HIR is many-to-one.
|
2020-03-23 07:00:51 -05:00
|
|
|
//!
|
|
|
|
//! HIR is the public API of the all of the compiler logic above syntax trees.
|
|
|
|
//! It is written in "OO" style. Each type is self contained (as in, it knows it's
|
|
|
|
//! parents and full context). It should be "clean code".
|
|
|
|
//!
|
|
|
|
//! `ra_hir_*` crates are the implementation of the compiler logic.
|
|
|
|
//! They are written in "ECS" style, with relatively little abstractions.
|
2020-03-23 07:04:50 -05:00
|
|
|
//! Many types are not self-contained, and explicitly use local indexes, arenas, etc.
|
2020-03-23 07:00:51 -05:00
|
|
|
//!
|
|
|
|
//! `ra_hir` is what insulates the "we don't know how to actually write an incremental compiler"
|
|
|
|
//! from the ide with completions, hovers, etc. It is a (soft, internal) boundary:
|
|
|
|
//! https://www.tedinski.com/2018/02/06/system-boundaries.html.
|
2018-11-27 18:42:26 -06:00
|
|
|
|
2019-09-30 03:58:53 -05:00
|
|
|
#![recursion_limit = "512"]
|
|
|
|
|
2019-01-24 10:12:11 -06:00
|
|
|
macro_rules! impl_froms {
|
2020-01-14 08:27:05 -06: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
|
|
|
)*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-18 11:35:10 -06:00
|
|
|
mod semantics;
|
2018-11-27 19:09:44 -06:00
|
|
|
pub mod db;
|
2020-02-28 10:27:49 -06:00
|
|
|
mod source_analyzer;
|
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;
|
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::{
|
2020-02-12 08:31:44 -06:00
|
|
|
Adt, AsAssocItem, AssocItem, AssocItemContainer, AttrDef, Const, Crate, CrateDependency,
|
2020-04-25 07:23:34 -05:00
|
|
|
DefWithBody, Docs, Enum, EnumVariant, Field, FieldSource, Function, GenericDef, HasAttrs,
|
2020-02-29 14:24:40 -06:00
|
|
|
HasVisibility, ImplDef, Local, MacroDef, Module, ModuleDef, ScopeDef, Static, Struct,
|
2020-04-25 07:23:34 -05:00
|
|
|
Trait, Type, TypeAlias, TypeParam, Union, VariantDef, Visibility,
|
2019-10-30 10:50:10 -05:00
|
|
|
},
|
2019-12-08 05:57:13 -06:00
|
|
|
has_source::HasSource,
|
2020-03-05 04:08:31 -06:00
|
|
|
semantics::{original_range, PathResolution, Semantics, SemanticsScope},
|
2018-11-27 18:42:26 -06:00
|
|
|
};
|
|
|
|
|
2019-10-30 09:24:36 -05:00
|
|
|
pub use hir_def::{
|
2020-02-15 14:48:20 -06:00
|
|
|
adt::StructKind,
|
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,
|
2019-12-13 05:12:36 -06:00
|
|
|
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::{
|
2020-02-09 04:34:41 -06:00
|
|
|
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};
|