rust/crates/ra_hir/src/lib.rs

59 lines
1.3 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.
2018-11-27 18:42:26 -06:00
2018-11-27 19:09:44 -06:00
pub mod db;
2018-11-28 07:19:01 -06:00
#[cfg(test)]
mod mock;
2019-01-23 06:36:29 -06:00
#[cfg(test)]
mod marks;
2018-11-27 18:42:26 -06:00
mod query_definitions;
mod path;
pub mod source_binder;
2018-11-27 18:42:26 -06:00
2019-01-01 13:47:10 -06:00
mod ids;
2018-12-31 07:05:07 -06:00
mod macros;
2018-12-27 11:07:21 -06:00
mod name;
2019-01-06 08:33:27 -06:00
mod module_tree;
mod nameres;
mod adt;
mod type_ref;
2018-12-20 14:56:28 -06:00
mod ty;
mod impl_block;
2019-01-05 09:32:07 -06:00
mod expr;
mod generics;
2018-12-08 14:40:55 -06:00
2019-01-06 08:33:27 -06:00
mod code_model_api;
2019-01-04 15:02:05 -06:00
mod code_model_impl;
2018-11-27 18:42:26 -06:00
use crate::{
db::HirDatabase,
2018-12-27 11:26:15 -06:00
name::{AsName, KnownName},
2019-01-18 07:56:02 -06:00
ids::{DefKind, SourceItemId, SourceFileItems},
2018-11-27 18:42:26 -06:00
};
2018-11-27 19:09:44 -06:00
pub use self::{
2018-11-27 18:42:26 -06:00
path::{Path, PathKind},
2018-12-27 11:07:21 -06:00
name::Name,
2019-01-01 15:37:36 -06:00
ids::{HirFileId, DefId, DefLoc, MacroCallId, MacroCallLoc},
macros::{MacroDef, MacroInput, MacroExpansion},
2019-01-06 08:37:18 -06:00
nameres::{ItemMap, PerNs, Namespace, Resolution},
2018-12-25 08:15:40 -06:00
ty::Ty,
impl_block::{ImplBlock, ImplItem},
2019-01-08 11:11:13 -06:00
code_model_impl::function::{FnScopes, ScopesWithSyntaxMapping},
2018-11-27 18:42:26 -06:00
};
2019-01-06 08:33:27 -06:00
pub use self::code_model_api::{
Crate, CrateDependency,
2019-01-08 11:11:13 -06:00
Def,
2019-01-06 08:33:27 -06:00
Module, ModuleSource, Problem,
Struct, Enum, EnumVariant,
2019-01-11 05:00:54 -06:00
Function, FnSignature, ScopeEntryWithSyntax,
StructField,
2019-01-11 12:02:12 -06:00
Static, Const,
Trait, Type,
2019-01-06 08:33:27 -06:00
};