mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-08 11:18:48 +00:00
61 lines
1.4 KiB
Rust
61 lines
1.4 KiB
Rust
//! HIR (previously known as descriptors) provides a high-level object oriented
|
|
//! access 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, the relation between syntax and HIR is many-to-one.
|
|
|
|
pub mod db;
|
|
#[cfg(test)]
|
|
mod mock;
|
|
mod query_definitions;
|
|
mod path;
|
|
pub mod source_binder;
|
|
|
|
mod ids;
|
|
mod macros;
|
|
mod name;
|
|
mod module_tree;
|
|
mod nameres;
|
|
mod adt;
|
|
mod type_ref;
|
|
mod ty;
|
|
mod impl_block;
|
|
mod expr;
|
|
mod generics;
|
|
mod docs;
|
|
|
|
mod code_model_api;
|
|
mod code_model_impl;
|
|
|
|
#[cfg(test)]
|
|
mod marks;
|
|
|
|
use crate::{
|
|
db::HirDatabase,
|
|
name::{AsName, KnownName},
|
|
ids::{DefKind, SourceItemId, SourceFileItems},
|
|
};
|
|
|
|
pub use self::{
|
|
path::{Path, PathKind},
|
|
name::Name,
|
|
ids::{HirFileId, DefId, DefLoc, MacroCallId, MacroCallLoc, HirInterner},
|
|
macros::{MacroDef, MacroInput, MacroExpansion},
|
|
nameres::{ItemMap, PerNs, Namespace, Resolution},
|
|
ty::{Ty, AdtDef},
|
|
impl_block::{ImplBlock, ImplItem},
|
|
code_model_impl::function::{FnScopes, ScopesWithSyntaxMapping},
|
|
docs::{Docs, Documentation}
|
|
};
|
|
|
|
pub use self::code_model_api::{
|
|
Crate, CrateDependency,
|
|
Def,
|
|
Module, ModuleDef, ModuleSource, Problem,
|
|
Struct, Enum, EnumVariant,
|
|
Function, FnSignature, ScopeEntryWithSyntax,
|
|
StructField,
|
|
Static, Const,
|
|
Trait, Type,
|
|
};
|