diff options
author | Aleksey Kladov <[email protected]> | 2019-01-01 16:51:11 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-01-01 19:15:35 +0000 |
commit | 7dc45745a378c6feb6af524e8bd40e89bab7a822 (patch) | |
tree | 1d223d721a0fb94f5d024dfee52503275f203537 /crates/ra_hir/src | |
parent | e5b2fd67711eeab6146021542937028dff3bf8a7 (diff) |
save top-level macros in module items
Diffstat (limited to 'crates/ra_hir/src')
-rw-r--r-- | crates/ra_hir/src/lib.rs | 20 | ||||
-rw-r--r-- | crates/ra_hir/src/query_definitions.rs | 10 |
2 files changed, 17 insertions, 13 deletions
diff --git a/crates/ra_hir/src/lib.rs b/crates/ra_hir/src/lib.rs index 4422ac45b..2f9684e33 100644 --- a/crates/ra_hir/src/lib.rs +++ b/crates/ra_hir/src/lib.rs | |||
@@ -33,7 +33,7 @@ mod ty; | |||
33 | 33 | ||
34 | use std::ops::Index; | 34 | use std::ops::Index; |
35 | 35 | ||
36 | use ra_syntax::{SyntaxNodeRef, SyntaxNode, SyntaxKind}; | 36 | use ra_syntax::{SyntaxNodeRef, SyntaxNode, SyntaxKind, SourceFile, AstNode, ast}; |
37 | use ra_db::{LocationIntener, SourceRootId, FileId, Cancelable}; | 37 | use ra_db::{LocationIntener, SourceRootId, FileId, Cancelable}; |
38 | 38 | ||
39 | use crate::{ | 39 | use crate::{ |
@@ -169,11 +169,23 @@ pub struct SourceFileItems { | |||
169 | } | 169 | } |
170 | 170 | ||
171 | impl SourceFileItems { | 171 | impl SourceFileItems { |
172 | fn new(file_id: FileId) -> SourceFileItems { | 172 | fn new(file_id: FileId, source_file: SourceFile) -> SourceFileItems { |
173 | SourceFileItems { | 173 | let mut res = SourceFileItems { |
174 | file_id, | 174 | file_id, |
175 | arena: Arena::default(), | 175 | arena: Arena::default(), |
176 | } | 176 | }; |
177 | res.init(source_file); | ||
178 | res | ||
179 | } | ||
180 | |||
181 | fn init(&mut self, source_file: SourceFile) { | ||
182 | source_file.syntax().descendants().for_each(|it| { | ||
183 | if let Some(module_item) = ast::ModuleItem::cast(it) { | ||
184 | self.alloc(module_item.syntax().owned()); | ||
185 | } else if let Some(macro_call) = ast::MacroCall::cast(it) { | ||
186 | self.alloc(macro_call.syntax().owned()); | ||
187 | } | ||
188 | }); | ||
177 | } | 189 | } |
178 | 190 | ||
179 | fn alloc(&mut self, item: SyntaxNode) -> SourceFileItemId { | 191 | fn alloc(&mut self, item: SyntaxNode) -> SourceFileItemId { |
diff --git a/crates/ra_hir/src/query_definitions.rs b/crates/ra_hir/src/query_definitions.rs index 721bd4195..f66231222 100644 --- a/crates/ra_hir/src/query_definitions.rs +++ b/crates/ra_hir/src/query_definitions.rs | |||
@@ -48,17 +48,9 @@ pub(super) fn enum_data(db: &impl HirDatabase, def_id: DefId) -> Cancelable<Arc< | |||
48 | } | 48 | } |
49 | 49 | ||
50 | pub(super) fn file_items(db: &impl HirDatabase, file_id: FileId) -> Arc<SourceFileItems> { | 50 | pub(super) fn file_items(db: &impl HirDatabase, file_id: FileId) -> Arc<SourceFileItems> { |
51 | let mut res = SourceFileItems::new(file_id); | ||
52 | let source_file = db.source_file(file_id); | 51 | let source_file = db.source_file(file_id); |
53 | let source_file = source_file.borrowed(); | 52 | let source_file = source_file.borrowed(); |
54 | source_file | 53 | let res = SourceFileItems::new(file_id, source_file); |
55 | .syntax() | ||
56 | .descendants() | ||
57 | .filter_map(ast::ModuleItem::cast) | ||
58 | .map(|it| it.syntax().owned()) | ||
59 | .for_each(|it| { | ||
60 | res.alloc(it); | ||
61 | }); | ||
62 | Arc::new(res) | 54 | Arc::new(res) |
63 | } | 55 | } |
64 | 56 | ||