2019-01-08 23:47:12 +00:00
|
|
|
//! 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
|
2019-01-08 23:47:12 +00:00
|
|
|
//! applied. So, the relation between syntax and HIR is many-to-one.
|
2020-03-23 12:00:51 +00: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 14:36:55 +00:00
|
|
|
//! `hir_*` crates are the implementation of the compiler logic.
|
2020-03-23 12:00:51 +00:00
|
|
|
//! They are written in "ECS" style, with relatively little abstractions.
|
2020-03-23 12:04:50 +00:00
|
|
|
//! Many types are not self-contained, and explicitly use local indexes, arenas, etc.
|
2020-03-23 12:00:51 +00:00
|
|
|
//!
|
2020-08-13 14:36:55 +00:00
|
|
|
//! `hir` is what insulates the "we don't know how to actually write an incremental compiler"
|
2020-03-23 12:00:51 +00: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-28 00:42:26 +00:00
|
|
|
|
2019-09-30 08:58:53 +00:00
|
|
|
#![recursion_limit = "512"]
|
|
|
|
|
2020-02-18 17:35:10 +00:00
|
|
|
mod semantics;
|
2018-11-28 01:09:44 +00:00
|
|
|
pub mod db;
|
2020-02-28 16:27:49 +00:00
|
|
|
mod source_analyzer;
|
2018-11-28 00:42:26 +00:00
|
|
|
|
2019-03-21 19:13:11 +00:00
|
|
|
pub mod diagnostics;
|
2018-12-08 20:40:55 +00:00
|
|
|
|
2019-10-31 15:45:10 +00:00
|
|
|
mod from_id;
|
2019-05-23 18:14:19 +00:00
|
|
|
mod code_model;
|
2020-08-25 10:56:01 +00:00
|
|
|
mod attrs;
|
2019-12-08 11:57:13 +00:00
|
|
|
mod has_source;
|
2019-09-16 10:48:54 +00:00
|
|
|
|
2019-10-29 12:53:25 +00:00
|
|
|
pub use crate::{
|
2020-08-26 16:56:41 +00:00
|
|
|
attrs::{HasAttrs, Namespace},
|
2019-10-30 15:50:10 +00:00
|
|
|
code_model::{
|
2021-03-02 13:41:01 +00:00
|
|
|
Access, Adt, AsAssocItem, AssocItem, AssocItemContainer, BuiltinType, Callable,
|
|
|
|
CallableKind, Const, ConstParam, Crate, CrateDependency, DefWithBody, Enum, Field,
|
|
|
|
FieldSource, Function, GenericDef, GenericParam, HasVisibility, Impl, Label, LifetimeParam,
|
|
|
|
Local, MacroDef, Module, ModuleDef, ScopeDef, Static, Struct, Trait, Type, TypeAlias,
|
|
|
|
TypeParam, Union, Variant, VariantDef,
|
2019-10-30 15:50:10 +00:00
|
|
|
},
|
2019-12-08 11:57:13 +00:00
|
|
|
has_source::HasSource,
|
2020-12-08 18:01:27 +00:00
|
|
|
semantics::{PathResolution, Semantics, SemanticsScope},
|
2018-11-28 00:42:26 +00:00
|
|
|
};
|
|
|
|
|
2019-10-30 14:24:36 +00:00
|
|
|
pub use hir_def::{
|
2020-02-15 20:48:20 +00:00
|
|
|
adt::StructKind,
|
2020-12-07 17:49:03 +00:00
|
|
|
attr::{Attrs, Documentation},
|
2019-11-27 14:46:02 +00:00
|
|
|
body::scope::ExprScopes,
|
2020-10-05 15:41:49 +00:00
|
|
|
find_path::PrefixKind,
|
2020-11-16 19:24:54 +00:00
|
|
|
import_map,
|
2020-06-15 02:47:33 +00:00
|
|
|
item_scope::ItemInNs,
|
2019-12-03 20:24:02 +00:00
|
|
|
nameres::ModuleSource,
|
2020-10-06 14:19:18 +00:00
|
|
|
path::{ModPath, PathKind},
|
2020-06-28 20:04:00 +00:00
|
|
|
type_ref::{Mutability, TypeRef},
|
2020-11-02 15:31:38 +00:00
|
|
|
visibility::Visibility,
|
2019-10-30 14:24:36 +00:00
|
|
|
};
|
2019-11-24 11:02:08 +00:00
|
|
|
pub use hir_expand::{
|
2020-12-11 12:49:32 +00:00
|
|
|
name::{known, AsName, Name},
|
|
|
|
ExpandResult, HirFileId, InFile, MacroCallId, MacroCallLoc, /* FIXME */ MacroDefId,
|
|
|
|
MacroFile, Origin,
|
2019-11-24 11:02:08 +00:00
|
|
|
};
|
2020-07-16 11:00:56 +00:00
|
|
|
pub use hir_ty::display::HirDisplay;
|
2020-08-13 21:52:14 +00:00
|
|
|
|
|
|
|
// These are negative re-exports: pub using these names is forbidden, they
|
|
|
|
// should remain private to hir internals.
|
|
|
|
#[allow(unused)]
|
2020-10-06 14:19:18 +00:00
|
|
|
use {hir_def::path::Path, hir_expand::hygiene::Hygiene};
|