mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-03 07:04:49 +00:00
fix compilation
This commit is contained in:
parent
e5300ad3ba
commit
c1ed9ccc4e
7 changed files with 12 additions and 8 deletions
|
@ -1 +1,3 @@
|
|||
//! FIXME: write short doc here
|
||||
|
||||
pub mod raw;
|
||||
|
|
|
@ -8,7 +8,6 @@ use ra_syntax::{
|
|||
ast::{self, AttrsOwner, NameOwner},
|
||||
AstNode, AstPtr, SourceFile,
|
||||
};
|
||||
use test_utils::tested_by;
|
||||
|
||||
use crate::{
|
||||
attr::Attr,
|
||||
|
@ -301,7 +300,8 @@ impl<DB: AstDatabase> RawItemsCollector<&DB> {
|
|||
self.push_item(current_module, attrs, RawItemKind::Module(item));
|
||||
return;
|
||||
}
|
||||
tested_by!(name_res_works_for_broken_modules);
|
||||
// FIXME: restore this mark once we complete hir splitting
|
||||
// tested_by!(name_res_works_for_broken_modules);
|
||||
}
|
||||
|
||||
fn add_use_item(&mut self, current_module: Option<Module>, use_item: ast::UseItem) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue