2019-01-09 00:47:12 +01:00
|
|
|
//! HIR (previously known as descriptors) provides a high-level object oriented
|
|
|
|
//! access to Rust code.
|
2018-11-28 03:42:26 +03: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-09 00:47:12 +01:00
|
|
|
//! applied. So, the relation between syntax and HIR is many-to-one.
|
2018-11-28 03:42:26 +03:00
|
|
|
|
2018-11-28 04:09:44 +03:00
|
|
|
pub mod db;
|
2018-11-28 16:19:01 +03:00
|
|
|
#[cfg(test)]
|
|
|
|
mod mock;
|
2019-01-10 16:45:09 +03:00
|
|
|
#[macro_use]
|
|
|
|
mod marks;
|
2018-11-28 03:42:26 +03:00
|
|
|
mod query_definitions;
|
|
|
|
mod path;
|
2018-12-05 13:16:20 +03:00
|
|
|
pub mod source_binder;
|
2018-11-28 03:42:26 +03:00
|
|
|
|
2019-01-01 22:47:10 +03:00
|
|
|
mod ids;
|
2018-12-31 16:05:07 +03:00
|
|
|
mod macros;
|
2018-12-27 20:07:21 +03:00
|
|
|
mod name;
|
2019-01-06 17:33:27 +03:00
|
|
|
mod module_tree;
|
|
|
|
mod nameres;
|
2018-12-24 19:07:48 +01:00
|
|
|
mod adt;
|
2018-12-25 21:14:13 +01:00
|
|
|
mod type_ref;
|
2018-12-20 21:56:28 +01:00
|
|
|
mod ty;
|
2018-12-28 14:34:00 +01:00
|
|
|
mod impl_block;
|
2019-01-05 16:32:07 +01:00
|
|
|
mod expr;
|
2018-12-08 23:40:55 +03:00
|
|
|
|
2019-01-06 17:33:27 +03:00
|
|
|
mod code_model_api;
|
2019-01-05 00:02:05 +03:00
|
|
|
mod code_model_impl;
|
|
|
|
|
2018-11-28 03:42:26 +03:00
|
|
|
use crate::{
|
|
|
|
db::HirDatabase,
|
2018-12-27 20:26:15 +03:00
|
|
|
name::{AsName, KnownName},
|
2019-01-02 00:30:00 +03:00
|
|
|
ids::{DefKind, SourceItemId, SourceFileItemId, SourceFileItems},
|
2018-11-28 03:42:26 +03:00
|
|
|
};
|
|
|
|
|
2018-11-28 04:09:44 +03:00
|
|
|
pub use self::{
|
2018-11-28 03:42:26 +03:00
|
|
|
path::{Path, PathKind},
|
2018-12-27 20:07:21 +03:00
|
|
|
name::Name,
|
2019-01-02 00:37:36 +03:00
|
|
|
ids::{HirFileId, DefId, DefLoc, MacroCallId, MacroCallLoc},
|
|
|
|
macros::{MacroDef, MacroInput, MacroExpansion},
|
2019-01-06 17:37:18 +03:00
|
|
|
nameres::{ItemMap, PerNs, Namespace, Resolution},
|
2018-12-25 15:15:40 +01:00
|
|
|
ty::Ty,
|
2018-12-28 14:34:00 +01:00
|
|
|
impl_block::{ImplBlock, ImplItem},
|
2019-01-08 20:11:13 +03:00
|
|
|
code_model_impl::function::{FnScopes, ScopesWithSyntaxMapping},
|
2018-11-28 03:42:26 +03:00
|
|
|
};
|
|
|
|
|
2019-01-06 17:33:27 +03:00
|
|
|
pub use self::code_model_api::{
|
|
|
|
Crate, CrateDependency,
|
2019-01-08 20:11:13 +03:00
|
|
|
Def,
|
2019-01-06 17:33:27 +03:00
|
|
|
Module, ModuleSource, Problem,
|
2019-01-08 16:01:19 +01:00
|
|
|
Struct, Enum, EnumVariant,
|
2019-01-11 14:00:54 +03:00
|
|
|
Function, FnSignature, ScopeEntryWithSyntax,
|
2019-01-11 21:02:12 +03:00
|
|
|
Static, Const,
|
|
|
|
Trait, Type,
|
2019-01-06 17:33:27 +03:00
|
|
|
};
|