rust/crates/ra_hir/src/lib.rs

62 lines
1.3 KiB
Rust
Raw Normal View History

2018-11-27 18:42:26 -06: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-27 19:09:44 -06:00
pub mod db;
2018-11-28 07:19:01 -06:00
#[cfg(test)]
mod mock;
2018-11-27 18:42:26 -06:00
mod query_definitions;
mod path;
mod arena;
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;
2018-12-08 14:40:55 -06:00
mod krate;
mod module;
mod function;
mod adt;
mod type_ref;
2018-12-20 14:56:28 -06:00
mod ty;
2018-12-08 14:40:55 -06:00
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-01 15:30:00 -06:00
ids::{DefKind, SourceItemId, SourceFileItemId, 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,
2018-12-08 14:40:55 -06:00
krate::Crate,
2019-01-01 15:37:36 -06:00
ids::{HirFileId, DefId, DefLoc, MacroCallId, MacroCallLoc},
macros::{MacroDef, MacroInput, MacroExpansion},
module::{Module, ModuleId, Problem, nameres::{ItemMap, PerNs, Namespace}, ModuleScope, Resolution},
2018-11-27 18:42:26 -06:00
function::{Function, FnScopes},
adt::{Struct, Enum},
2018-12-25 08:15:40 -06:00
ty::Ty,
2018-11-27 18:42:26 -06:00
};
pub use self::function::FnSignatureInfo;
2018-11-27 19:09:44 -06:00
pub enum Def {
2018-11-27 18:42:26 -06:00
Module(Module),
2018-12-04 14:44:00 -06:00
Function(Function),
Struct(Struct),
Enum(Enum),
2018-11-27 18:42:26 -06:00
Item,
}