mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 14:21:44 +00:00
hir::Crate boilerplate
This commit is contained in:
parent
9b1356464a
commit
9c6c7ec2da
2 changed files with 21 additions and 2 deletions
|
@ -18,12 +18,15 @@ pub mod db;
|
|||
#[cfg(test)]
|
||||
mod mock;
|
||||
mod query_definitions;
|
||||
mod function;
|
||||
mod module;
|
||||
mod path;
|
||||
mod arena;
|
||||
pub mod source_binder;
|
||||
|
||||
mod krate;
|
||||
mod module;
|
||||
mod function;
|
||||
|
||||
|
||||
use std::ops::Index;
|
||||
|
||||
use ra_syntax::{SyntaxNodeRef, SyntaxNode};
|
||||
|
@ -36,6 +39,7 @@ use crate::{
|
|||
|
||||
pub use self::{
|
||||
path::{Path, PathKind},
|
||||
krate::Crate,
|
||||
module::{Module, ModuleId, Problem, nameres::ItemMap},
|
||||
function::{Function, FnScopes},
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue