rust-analyzer/crates/ra_hir/src/lib.rs

62 lines
1.4 KiB
Rust
Raw Normal View History

2018-11-28 00:42:26 +00:00
//! HIR (previsouly known as descriptors) provides a high-level OO acess to Rust
//! code.
//!
//! 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, there relation between syntax and HIR is many-to-one.
macro_rules! ctry {
($expr:expr) => {
match $expr {
None => return Ok(None),
Some(it) => it,
}
};
}
2018-11-28 01:09:44 +00:00
pub mod db;
2018-11-28 13:19:01 +00:00
#[cfg(test)]
mod mock;
2018-11-28 00:42:26 +00:00
mod query_definitions;
mod path;
pub mod source_binder;
2018-11-28 00:42:26 +00:00
2019-01-01 19:47:10 +00:00
mod ids;
2018-12-31 13:05:07 +00:00
mod macros;
2018-12-27 17:07:21 +00:00
mod name;
2019-01-06 14:33:27 +00:00
mod module_tree;
mod nameres;
mod adt;
mod type_ref;
2018-12-20 20:56:28 +00:00
mod ty;
mod impl_block;
2019-01-05 15:32:07 +00:00
mod expr;
2018-12-08 20:40:55 +00:00
2019-01-06 14:33:27 +00:00
mod code_model_api;
2019-01-04 21:02:05 +00:00
mod code_model_impl;
2018-11-28 00:42:26 +00:00
use crate::{
db::HirDatabase,
2018-12-27 17:26:15 +00:00
name::{AsName, KnownName},
2019-01-01 21:30:00 +00:00
ids::{DefKind, SourceItemId, SourceFileItemId, SourceFileItems},
2018-11-28 00:42:26 +00:00
};
2018-11-28 01:09:44 +00:00
pub use self::{
2018-11-28 00:42:26 +00:00
path::{Path, PathKind},
2018-12-27 17:07:21 +00:00
name::Name,
2019-01-01 21:37:36 +00:00
ids::{HirFileId, DefId, DefLoc, MacroCallId, MacroCallLoc},
macros::{MacroDef, MacroInput, MacroExpansion},
2019-01-06 14:37:18 +00:00
nameres::{ItemMap, PerNs, Namespace, Resolution},
2018-12-25 14:15:40 +00:00
ty::Ty,
impl_block::{ImplBlock, ImplItem},
2019-01-08 17:11:13 +00:00
code_model_impl::function::{FnScopes, ScopesWithSyntaxMapping},
2018-11-28 00:42:26 +00:00
};
2019-01-06 14:33:27 +00:00
pub use self::code_model_api::{
Crate, CrateDependency,
2019-01-08 17:11:13 +00:00
Def,
2019-01-06 14:33:27 +00:00
Module, ModuleSource, Problem,
2019-01-08 12:27:00 +00:00
Struct, Enum, VariantData, StructField,
2019-01-08 17:11:13 +00:00
Function, FnSignature,
2019-01-06 14:33:27 +00:00
};