rust/crates/hir/src/lib.rs

70 lines
2.4 KiB
Rust
Raw Normal View History

//! 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
//! 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
#![recursion_limit = "512"]
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;
mod attrs;
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::{
attrs::{HasAttrs, Namespace},
2019-10-30 10:50:10 -05:00
code_model::{
Access, Adt, AsAssocItem, AssocItem, AssocItemContainer, Callable, CallableKind, Const,
2021-01-01 03:06:42 -06:00
ConstParam, Crate, CrateDependency, DefWithBody, Enum, Field, FieldSource, Function,
2021-01-01 17:42:07 -06:00
GenericDef, GenericParam, HasVisibility, Impl, Label, LifetimeParam, Local, MacroDef,
Module, ModuleDef, ScopeDef, Static, Struct, Trait, Type, TypeAlias, TypeParam, Union,
Variant, VariantDef,
2019-10-30 10:50:10 -05:00
},
2019-12-08 05:57:13 -06:00
has_source::HasSource,
semantics::{PathResolution, Semantics, SemanticsScope},
2018-11-27 18:42:26 -06:00
};
2019-10-30 09:24:36 -05:00
pub use hir_def::{
adt::StructKind,
2020-12-07 11:49:03 -06:00
attr::{Attrs, Documentation},
2019-11-27 08:46:02 -06:00
body::scope::ExprScopes,
2019-10-31 02:51:54 -05:00
builtin_type::BuiltinType,
find_path::PrefixKind,
2020-11-16 13:24:54 -06:00
import_map,
2020-06-14 21:47:33 -05:00
item_scope::ItemInNs,
2019-12-03 14:24:02 -06:00
nameres::ModuleSource,
path::{ModPath, PathKind},
type_ref::{Mutability, TypeRef},
2020-11-02 09:31:38 -06:00
visibility::Visibility,
2019-10-30 09:24:36 -05:00
};
2019-11-24 05:02:08 -06:00
pub use hir_expand::{
2020-12-11 06:49:32 -06:00
name::{known, AsName, Name},
ExpandResult, HirFileId, InFile, MacroCallId, MacroCallLoc, /* FIXME */ MacroDefId,
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_def::path::Path, hir_expand::hygiene::Hygiene};