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".
|
|
|
|
//!
|
2020-08-13 09:36:55 -05:00
|
|
|
//! `hir_*` crates are the implementation of the compiler logic.
|
2020-03-23 07:00:51 -05:00
|
|
|
//! 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
|
|
|
//!
|
2020-08-13 09:36:55 -05:00
|
|
|
//! `hir` is what insulates the "we don't know how to actually write an incremental compiler"
|
2020-03-23 07:00:51 -05:00
|
|
|
//! 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"]
|
|
|
|
|
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-07-16 06:00:56 -05:00
|
|
|
Adt, AsAssocItem, AssocItem, AssocItemContainer, AttrDef, Callable, CallableKind, Const,
|
|
|
|
Crate, CrateDependency, DefWithBody, Docs, Enum, EnumVariant, Field, FieldSource, Function,
|
|
|
|
GenericDef, HasAttrs, HasVisibility, ImplDef, Local, MacroDef, Module, ModuleDef, ScopeDef,
|
|
|
|
Static, Struct, 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,
|
2020-05-21 03:48:42 -05:00
|
|
|
attr::Attrs,
|
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},
|
2020-06-28 15:04:00 -05:00
|
|
|
type_ref::{Mutability, TypeRef},
|
2019-10-30 09:24:36 -05:00
|
|
|
};
|
2019-11-24 05:02:08 -06:00
|
|
|
pub use hir_expand::{
|
2020-08-13 16:52:14 -05:00
|
|
|
name::Name, HirFileId, InFile, MacroCallId, MacroCallLoc, /* FIXME */ MacroDefId,
|
2020-04-30 05:20:13 -05:00
|
|
|
MacroFile, Origin,
|
2019-11-24 05:02:08 -06:00
|
|
|
};
|
2020-07-16 06:00:56 -05:00
|
|
|
pub use hir_ty::display::HirDisplay;
|
2020-08-13 16:52:14 -05:00
|
|
|
|
|
|
|
// These are negative re-exports: pub using these names is forbidden, they
|
|
|
|
// should remain private to hir internals.
|
|
|
|
#[allow(unused)]
|
|
|
|
use hir_expand::hygiene::Hygiene;
|