mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 14:21:44 +00:00
introduce hir::Name
This commit is contained in:
parent
3b820bcca3
commit
d963042ca9
11 changed files with 121 additions and 51 deletions
|
@ -22,6 +22,7 @@ mod path;
|
|||
mod arena;
|
||||
pub mod source_binder;
|
||||
|
||||
mod name;
|
||||
mod krate;
|
||||
mod module;
|
||||
mod function;
|
||||
|
@ -37,10 +38,12 @@ use ra_db::{LocationIntener, SourceRootId, FileId, Cancelable};
|
|||
use crate::{
|
||||
db::HirDatabase,
|
||||
arena::{Arena, Id},
|
||||
name::AsName,
|
||||
};
|
||||
|
||||
pub use self::{
|
||||
path::{Path, PathKind},
|
||||
name::Name,
|
||||
krate::Crate,
|
||||
module::{Module, ModuleId, Problem, nameres::{ItemMap, PerNs, Namespace}, ModuleScope, Resolution},
|
||||
function::{Function, FnScopes},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue