aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_def
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-12-21 14:04:33 +0000
committerAleksey Kladov <[email protected]>2019-12-21 14:04:33 +0000
commit973b5cf7e20842711d59a810b268796b26241382 (patch)
tree7025977c0333378cd209dc47c1d160c7cdef206a /crates/ra_hir_def
parenta1f4c988e47b7160b11070d18f50657b6fb9014c (diff)
Revert "Merge #2629"
This reverts commit cdc9d682b066b110e0a44e5f8f1c574b38c16ba9, reversing changes made to 90ef070db3dce0a7acb9cd11d0b0d72de13c9d79.
Diffstat (limited to 'crates/ra_hir_def')
-rw-r--r--crates/ra_hir_def/src/db.rs11
-rw-r--r--crates/ra_hir_def/src/item_scope.rs35
-rw-r--r--crates/ra_hir_def/src/lib.rs4
-rw-r--r--crates/ra_hir_def/src/nameres/collector.rs46
-rw-r--r--crates/ra_hir_def/src/nameres/raw.rs68
-rw-r--r--crates/ra_hir_def/src/trace.rs8
6 files changed, 126 insertions, 46 deletions
diff --git a/crates/ra_hir_def/src/db.rs b/crates/ra_hir_def/src/db.rs
index c55fd4111..98bff6cb7 100644
--- a/crates/ra_hir_def/src/db.rs
+++ b/crates/ra_hir_def/src/db.rs
@@ -13,7 +13,10 @@ use crate::{
13 docs::Documentation, 13 docs::Documentation,
14 generics::GenericParams, 14 generics::GenericParams,
15 lang_item::{LangItemTarget, LangItems}, 15 lang_item::{LangItemTarget, LangItems},
16 nameres::{raw::RawItems, CrateDefMap}, 16 nameres::{
17 raw::{ImportSourceMap, RawItems},
18 CrateDefMap,
19 },
17 AttrDefId, ConstId, ConstLoc, DefWithBodyId, EnumId, EnumLoc, FunctionId, FunctionLoc, 20 AttrDefId, ConstId, ConstLoc, DefWithBodyId, EnumId, EnumLoc, FunctionId, FunctionLoc,
18 GenericDefId, ImplId, ImplLoc, ModuleId, StaticId, StaticLoc, StructId, StructLoc, TraitId, 21 GenericDefId, ImplId, ImplLoc, ModuleId, StaticId, StaticLoc, StructId, StructLoc, TraitId,
19 TraitLoc, TypeAliasId, TypeAliasLoc, UnionId, UnionLoc, 22 TraitLoc, TypeAliasId, TypeAliasLoc, UnionId, UnionLoc,
@@ -43,6 +46,12 @@ pub trait InternDatabase: SourceDatabase {
43 46
44#[salsa::query_group(DefDatabaseStorage)] 47#[salsa::query_group(DefDatabaseStorage)]
45pub trait DefDatabase: InternDatabase + AstDatabase { 48pub trait DefDatabase: InternDatabase + AstDatabase {
49 #[salsa::invoke(RawItems::raw_items_with_source_map_query)]
50 fn raw_items_with_source_map(
51 &self,
52 file_id: HirFileId,
53 ) -> (Arc<RawItems>, Arc<ImportSourceMap>);
54
46 #[salsa::invoke(RawItems::raw_items_query)] 55 #[salsa::invoke(RawItems::raw_items_query)]
47 fn raw_items(&self, file_id: HirFileId) -> Arc<RawItems>; 56 fn raw_items(&self, file_id: HirFileId) -> Arc<RawItems>;
48 57
diff --git a/crates/ra_hir_def/src/item_scope.rs b/crates/ra_hir_def/src/item_scope.rs
index 5c14fefff..6b9be8325 100644
--- a/crates/ra_hir_def/src/item_scope.rs
+++ b/crates/ra_hir_def/src/item_scope.rs
@@ -5,7 +5,7 @@ use hir_expand::name::Name;
5use once_cell::sync::Lazy; 5use once_cell::sync::Lazy;
6use rustc_hash::FxHashMap; 6use rustc_hash::FxHashMap;
7 7
8use crate::{per_ns::PerNs, BuiltinType, ImplId, MacroDefId, ModuleDefId, TraitId}; 8use crate::{per_ns::PerNs, BuiltinType, ImplId, LocalImportId, MacroDefId, ModuleDefId, TraitId};
9 9
10#[derive(Debug, Default, PartialEq, Eq)] 10#[derive(Debug, Default, PartialEq, Eq)]
11pub struct ItemScope { 11pub struct ItemScope {
@@ -30,7 +30,7 @@ static BUILTIN_SCOPE: Lazy<FxHashMap<Name, Resolution>> = Lazy::new(|| {
30 BuiltinType::ALL 30 BuiltinType::ALL
31 .iter() 31 .iter()
32 .map(|(name, ty)| { 32 .map(|(name, ty)| {
33 (name.clone(), Resolution { def: PerNs::types(ty.clone().into()), declaration: false }) 33 (name.clone(), Resolution { def: PerNs::types(ty.clone().into()), import: None })
34 }) 34 })
35 .collect() 35 .collect()
36}); 36});
@@ -53,9 +53,11 @@ impl ItemScope {
53 } 53 }
54 54
55 pub fn declarations(&self) -> impl Iterator<Item = ModuleDefId> + '_ { 55 pub fn declarations(&self) -> impl Iterator<Item = ModuleDefId> + '_ {
56 self.entries().filter(|(_name, res)| res.declaration).flat_map(|(_name, res)| { 56 self.entries()
57 res.def.take_types().into_iter().chain(res.def.take_values().into_iter()) 57 .filter_map(|(_name, res)| if res.import.is_none() { Some(res.def) } else { None })
58 }) 58 .flat_map(|per_ns| {
59 per_ns.take_types().into_iter().chain(per_ns.take_values().into_iter())
60 })
59 } 61 }
60 62
61 pub fn impls(&self) -> impl Iterator<Item = ImplId> + ExactSizeIterator + '_ { 63 pub fn impls(&self) -> impl Iterator<Item = ImplId> + ExactSizeIterator + '_ {
@@ -110,26 +112,38 @@ impl ItemScope {
110 self.legacy_macros.insert(name, mac); 112 self.legacy_macros.insert(name, mac);
111 } 113 }
112 114
113 pub(crate) fn push_res(&mut self, name: Name, res: &Resolution, declaration: bool) -> bool { 115 pub(crate) fn push_res(
116 &mut self,
117 name: Name,
118 res: &Resolution,
119 import: Option<LocalImportId>,
120 ) -> bool {
114 let mut changed = false; 121 let mut changed = false;
115 let existing = self.items.entry(name.clone()).or_default(); 122 let existing = self.items.entry(name.clone()).or_default();
116 123
117 if existing.def.types.is_none() && res.def.types.is_some() { 124 if existing.def.types.is_none() && res.def.types.is_some() {
118 existing.def.types = res.def.types; 125 existing.def.types = res.def.types;
119 existing.declaration |= declaration; 126 existing.import = import.or(res.import);
120 changed = true; 127 changed = true;
121 } 128 }
122 if existing.def.values.is_none() && res.def.values.is_some() { 129 if existing.def.values.is_none() && res.def.values.is_some() {
123 existing.def.values = res.def.values; 130 existing.def.values = res.def.values;
124 existing.declaration |= declaration; 131 existing.import = import.or(res.import);
125 changed = true; 132 changed = true;
126 } 133 }
127 if existing.def.macros.is_none() && res.def.macros.is_some() { 134 if existing.def.macros.is_none() && res.def.macros.is_some() {
128 existing.def.macros = res.def.macros; 135 existing.def.macros = res.def.macros;
129 existing.declaration |= declaration; 136 existing.import = import.or(res.import);
130 changed = true; 137 changed = true;
131 } 138 }
132 139
140 if existing.def.is_none()
141 && res.def.is_none()
142 && existing.import.is_none()
143 && res.import.is_some()
144 {
145 existing.import = res.import;
146 }
133 changed 147 changed
134 } 148 }
135 149
@@ -146,5 +160,6 @@ impl ItemScope {
146pub struct Resolution { 160pub struct Resolution {
147 /// None for unresolved 161 /// None for unresolved
148 pub def: PerNs, 162 pub def: PerNs,
149 pub declaration: bool, 163 /// ident by which this is imported into local scope.
164 pub import: Option<LocalImportId>,
150} 165}
diff --git a/crates/ra_hir_def/src/lib.rs b/crates/ra_hir_def/src/lib.rs
index f6c7f38d1..acd4f4af1 100644
--- a/crates/ra_hir_def/src/lib.rs
+++ b/crates/ra_hir_def/src/lib.rs
@@ -52,6 +52,10 @@ use crate::body::Expander;
52use crate::builtin_type::BuiltinType; 52use crate::builtin_type::BuiltinType;
53 53
54#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] 54#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
55pub struct LocalImportId(RawId);
56impl_arena_id!(LocalImportId);
57
58#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
55pub struct ModuleId { 59pub struct ModuleId {
56 pub krate: CrateId, 60 pub krate: CrateId,
57 pub local_id: LocalModuleId, 61 pub local_id: LocalModuleId,
diff --git a/crates/ra_hir_def/src/nameres/collector.rs b/crates/ra_hir_def/src/nameres/collector.rs
index 9419461a8..45199fa11 100644
--- a/crates/ra_hir_def/src/nameres/collector.rs
+++ b/crates/ra_hir_def/src/nameres/collector.rs
@@ -26,7 +26,8 @@ use crate::{
26 path::{ModPath, PathKind}, 26 path::{ModPath, PathKind},
27 per_ns::PerNs, 27 per_ns::PerNs,
28 AdtId, AstId, ConstLoc, ContainerId, EnumLoc, EnumVariantId, FunctionLoc, ImplLoc, Intern, 28 AdtId, AstId, ConstLoc, ContainerId, EnumLoc, EnumVariantId, FunctionLoc, ImplLoc, Intern,
29 LocalModuleId, ModuleDefId, ModuleId, StaticLoc, StructLoc, TraitLoc, TypeAliasLoc, UnionLoc, 29 LocalImportId, LocalModuleId, ModuleDefId, ModuleId, StaticLoc, StructLoc, TraitLoc,
30 TypeAliasLoc, UnionLoc,
30}; 31};
31 32
32pub(super) fn collect_defs(db: &impl DefDatabase, mut def_map: CrateDefMap) -> CrateDefMap { 33pub(super) fn collect_defs(db: &impl DefDatabase, mut def_map: CrateDefMap) -> CrateDefMap {
@@ -92,7 +93,7 @@ impl PartialResolvedImport {
92#[derive(Clone, Debug, Eq, PartialEq)] 93#[derive(Clone, Debug, Eq, PartialEq)]
93struct ImportDirective { 94struct ImportDirective {
94 module_id: LocalModuleId, 95 module_id: LocalModuleId,
95 import_id: raw::LocalImportId, 96 import_id: LocalImportId,
96 import: raw::ImportData, 97 import: raw::ImportData,
97 status: PartialResolvedImport, 98 status: PartialResolvedImport,
98} 99}
@@ -109,7 +110,7 @@ struct MacroDirective {
109struct DefCollector<'a, DB> { 110struct DefCollector<'a, DB> {
110 db: &'a DB, 111 db: &'a DB,
111 def_map: CrateDefMap, 112 def_map: CrateDefMap,
112 glob_imports: FxHashMap<LocalModuleId, Vec<(LocalModuleId, raw::LocalImportId)>>, 113 glob_imports: FxHashMap<LocalModuleId, Vec<(LocalModuleId, LocalImportId)>>,
113 unresolved_imports: Vec<ImportDirective>, 114 unresolved_imports: Vec<ImportDirective>,
114 resolved_imports: Vec<ImportDirective>, 115 resolved_imports: Vec<ImportDirective>,
115 unexpanded_macros: Vec<MacroDirective>, 116 unexpanded_macros: Vec<MacroDirective>,
@@ -217,7 +218,8 @@ where
217 if export { 218 if export {
218 self.update( 219 self.update(
219 self.def_map.root, 220 self.def_map.root,
220 &[(name, Resolution { def: PerNs::macros(macro_), declaration: false })], 221 None,
222 &[(name, Resolution { def: PerNs::macros(macro_), import: None })],
221 ); 223 );
222 } 224 }
223 } 225 }
@@ -372,7 +374,7 @@ where
372 // Module scoped macros is included 374 // Module scoped macros is included
373 let items = scope.collect_resolutions(); 375 let items = scope.collect_resolutions();
374 376
375 self.update(module_id, &items); 377 self.update(module_id, Some(import_id), &items);
376 } else { 378 } else {
377 // glob import from same crate => we do an initial 379 // glob import from same crate => we do an initial
378 // import, and then need to propagate any further 380 // import, and then need to propagate any further
@@ -382,7 +384,7 @@ where
382 // Module scoped macros is included 384 // Module scoped macros is included
383 let items = scope.collect_resolutions(); 385 let items = scope.collect_resolutions();
384 386
385 self.update(module_id, &items); 387 self.update(module_id, Some(import_id), &items);
386 // record the glob import in case we add further items 388 // record the glob import in case we add further items
387 let glob = self.glob_imports.entry(m.local_id).or_default(); 389 let glob = self.glob_imports.entry(m.local_id).or_default();
388 if !glob.iter().any(|it| *it == (module_id, import_id)) { 390 if !glob.iter().any(|it| *it == (module_id, import_id)) {
@@ -402,12 +404,12 @@ where
402 let variant = EnumVariantId { parent: e, local_id }; 404 let variant = EnumVariantId { parent: e, local_id };
403 let res = Resolution { 405 let res = Resolution {
404 def: PerNs::both(variant.into(), variant.into()), 406 def: PerNs::both(variant.into(), variant.into()),
405 declaration: false, 407 import: Some(import_id),
406 }; 408 };
407 (name, res) 409 (name, res)
408 }) 410 })
409 .collect::<Vec<_>>(); 411 .collect::<Vec<_>>();
410 self.update(module_id, &resolutions); 412 self.update(module_id, Some(import_id), &resolutions);
411 } 413 }
412 Some(d) => { 414 Some(d) => {
413 log::debug!("glob import {:?} from non-module/enum {:?}", import, d); 415 log::debug!("glob import {:?} from non-module/enum {:?}", import, d);
@@ -429,21 +431,27 @@ where
429 } 431 }
430 } 432 }
431 433
432 let resolution = Resolution { def, declaration: false }; 434 let resolution = Resolution { def, import: Some(import_id) };
433 self.update(module_id, &[(name, resolution)]); 435 self.update(module_id, Some(import_id), &[(name, resolution)]);
434 } 436 }
435 None => tested_by!(bogus_paths), 437 None => tested_by!(bogus_paths),
436 } 438 }
437 } 439 }
438 } 440 }
439 441
440 fn update(&mut self, module_id: LocalModuleId, resolutions: &[(Name, Resolution)]) { 442 fn update(
441 self.update_recursive(module_id, resolutions, 0) 443 &mut self,
444 module_id: LocalModuleId,
445 import: Option<LocalImportId>,
446 resolutions: &[(Name, Resolution)],
447 ) {
448 self.update_recursive(module_id, import, resolutions, 0)
442 } 449 }
443 450
444 fn update_recursive( 451 fn update_recursive(
445 &mut self, 452 &mut self,
446 module_id: LocalModuleId, 453 module_id: LocalModuleId,
454 import: Option<LocalImportId>,
447 resolutions: &[(Name, Resolution)], 455 resolutions: &[(Name, Resolution)],
448 depth: usize, 456 depth: usize,
449 ) { 457 ) {
@@ -454,7 +462,7 @@ where
454 let scope = &mut self.def_map.modules[module_id].scope; 462 let scope = &mut self.def_map.modules[module_id].scope;
455 let mut changed = false; 463 let mut changed = false;
456 for (name, res) in resolutions { 464 for (name, res) in resolutions {
457 changed |= scope.push_res(name.clone(), res, depth == 0 && res.declaration); 465 changed |= scope.push_res(name.clone(), res, import);
458 } 466 }
459 467
460 if !changed { 468 if !changed {
@@ -467,9 +475,9 @@ where
467 .flat_map(|v| v.iter()) 475 .flat_map(|v| v.iter())
468 .cloned() 476 .cloned()
469 .collect::<Vec<_>>(); 477 .collect::<Vec<_>>();
470 for (glob_importing_module, _glob_import) in glob_imports { 478 for (glob_importing_module, glob_import) in glob_imports {
471 // We pass the glob import so that the tracked import in those modules is that glob import 479 // We pass the glob import so that the tracked import in those modules is that glob import
472 self.update_recursive(glob_importing_module, resolutions, depth + 1); 480 self.update_recursive(glob_importing_module, Some(glob_import), resolutions, depth + 1);
473 } 481 }
474 } 482 }
475 483
@@ -711,9 +719,9 @@ where
711 def: PerNs::types( 719 def: PerNs::types(
712 ModuleId { krate: self.def_collector.def_map.krate, local_id: res }.into(), 720 ModuleId { krate: self.def_collector.def_map.krate, local_id: res }.into(),
713 ), 721 ),
714 declaration: true, 722 import: None,
715 }; 723 };
716 self.def_collector.update(self.module_id, &[(name, resolution)]); 724 self.def_collector.update(self.module_id, None, &[(name, resolution)]);
717 res 725 res
718 } 726 }
719 727
@@ -783,8 +791,8 @@ where
783 PerNs::types(def.into()) 791 PerNs::types(def.into())
784 } 792 }
785 }; 793 };
786 let resolution = Resolution { def, declaration: true }; 794 let resolution = Resolution { def, import: None };
787 self.def_collector.update(self.module_id, &[(name, resolution)]) 795 self.def_collector.update(self.module_id, None, &[(name, resolution)])
788 } 796 }
789 797
790 fn collect_derives(&mut self, attrs: &Attrs, def: &raw::DefData) { 798 fn collect_derives(&mut self, attrs: &Attrs, def: &raw::DefData) {
diff --git a/crates/ra_hir_def/src/nameres/raw.rs b/crates/ra_hir_def/src/nameres/raw.rs
index b10e458a2..ecb4d7c03 100644
--- a/crates/ra_hir_def/src/nameres/raw.rs
+++ b/crates/ra_hir_def/src/nameres/raw.rs
@@ -7,24 +7,24 @@
7 7
8use std::{ops::Index, sync::Arc}; 8use std::{ops::Index, sync::Arc};
9 9
10use either::Either;
10use hir_expand::{ 11use hir_expand::{
11 ast_id_map::AstIdMap, 12 ast_id_map::AstIdMap,
12 db::AstDatabase, 13 db::AstDatabase,
13 hygiene::Hygiene, 14 hygiene::Hygiene,
14 name::{AsName, Name}, 15 name::{AsName, Name},
15}; 16};
16use ra_arena::{impl_arena_id, Arena, RawId}; 17use ra_arena::{impl_arena_id, map::ArenaMap, Arena, RawId};
17use ra_syntax::{ 18use ra_syntax::{
18 ast::{self, AttrsOwner, NameOwner}, 19 ast::{self, AttrsOwner, NameOwner},
19 AstNode, 20 AstNode, AstPtr,
20}; 21};
21use test_utils::tested_by; 22use test_utils::tested_by;
22 23
23use crate::{attr::Attrs, db::DefDatabase, path::ModPath, FileAstId, HirFileId, InFile}; 24use crate::{
24 25 attr::Attrs, db::DefDatabase, path::ModPath, trace::Trace, FileAstId, HirFileId, InFile,
25#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] 26 LocalImportId,
26pub(super) struct LocalImportId(RawId); 27};
27impl_arena_id!(LocalImportId);
28 28
29/// `RawItems` is a set of top-level items in a file (except for impls). 29/// `RawItems` is a set of top-level items in a file (except for impls).
30/// 30///
@@ -41,14 +41,35 @@ pub struct RawItems {
41 items: Vec<RawItem>, 41 items: Vec<RawItem>,
42} 42}
43 43
44#[derive(Debug, Default, PartialEq, Eq)]
45pub struct ImportSourceMap {
46 map: ArenaMap<LocalImportId, ImportSourcePtr>,
47}
48
49type ImportSourcePtr = Either<AstPtr<ast::UseTree>, AstPtr<ast::ExternCrateItem>>;
50
51impl ImportSourceMap {
52 pub fn get(&self, import: LocalImportId) -> ImportSourcePtr {
53 self.map[import].clone()
54 }
55}
56
44impl RawItems { 57impl RawItems {
45 pub(crate) fn raw_items_query( 58 pub(crate) fn raw_items_query(
46 db: &(impl DefDatabase + AstDatabase), 59 db: &(impl DefDatabase + AstDatabase),
47 file_id: HirFileId, 60 file_id: HirFileId,
48 ) -> Arc<RawItems> { 61 ) -> Arc<RawItems> {
62 db.raw_items_with_source_map(file_id).0
63 }
64
65 pub(crate) fn raw_items_with_source_map_query(
66 db: &(impl DefDatabase + AstDatabase),
67 file_id: HirFileId,
68 ) -> (Arc<RawItems>, Arc<ImportSourceMap>) {
49 let mut collector = RawItemsCollector { 69 let mut collector = RawItemsCollector {
50 raw_items: RawItems::default(), 70 raw_items: RawItems::default(),
51 source_ast_id_map: db.ast_id_map(file_id), 71 source_ast_id_map: db.ast_id_map(file_id),
72 imports: Trace::new(),
52 file_id, 73 file_id,
53 hygiene: Hygiene::new(db, file_id), 74 hygiene: Hygiene::new(db, file_id),
54 }; 75 };
@@ -59,8 +80,11 @@ impl RawItems {
59 collector.process_module(None, item_list); 80 collector.process_module(None, item_list);
60 } 81 }
61 } 82 }
62 let raw_items = collector.raw_items; 83 let mut raw_items = collector.raw_items;
63 Arc::new(raw_items) 84 let (arena, map) = collector.imports.into_arena_and_map();
85 raw_items.imports = arena;
86 let source_map = ImportSourceMap { map };
87 (Arc::new(raw_items), Arc::new(source_map))
64 } 88 }
65 89
66 pub(super) fn items(&self) -> &[RawItem] { 90 pub(super) fn items(&self) -> &[RawItem] {
@@ -199,6 +223,7 @@ pub(super) struct ImplData {
199 223
200struct RawItemsCollector { 224struct RawItemsCollector {
201 raw_items: RawItems, 225 raw_items: RawItems,
226 imports: Trace<LocalImportId, ImportData, ImportSourcePtr>,
202 source_ast_id_map: Arc<AstIdMap>, 227 source_ast_id_map: Arc<AstIdMap>,
203 file_id: HirFileId, 228 file_id: HirFileId,
204 hygiene: Hygiene, 229 hygiene: Hygiene,
@@ -305,7 +330,7 @@ impl RawItemsCollector {
305 ModPath::expand_use_item( 330 ModPath::expand_use_item(
306 InFile { value: use_item, file_id: self.file_id }, 331 InFile { value: use_item, file_id: self.file_id },
307 &self.hygiene, 332 &self.hygiene,
308 |path, _use_tree, is_glob, alias| { 333 |path, use_tree, is_glob, alias| {
309 let import_data = ImportData { 334 let import_data = ImportData {
310 path, 335 path,
311 alias, 336 alias,
@@ -314,11 +339,11 @@ impl RawItemsCollector {
314 is_extern_crate: false, 339 is_extern_crate: false,
315 is_macro_use: false, 340 is_macro_use: false,
316 }; 341 };
317 buf.push(import_data); 342 buf.push((import_data, Either::Left(AstPtr::new(use_tree))));
318 }, 343 },
319 ); 344 );
320 for import_data in buf { 345 for (import_data, ptr) in buf {
321 self.push_import(current_module, attrs.clone(), import_data); 346 self.push_import(current_module, attrs.clone(), import_data, ptr);
322 } 347 }
323 } 348 }
324 349
@@ -341,7 +366,12 @@ impl RawItemsCollector {
341 is_extern_crate: true, 366 is_extern_crate: true,
342 is_macro_use, 367 is_macro_use,
343 }; 368 };
344 self.push_import(current_module, attrs, import_data); 369 self.push_import(
370 current_module,
371 attrs,
372 import_data,
373 Either::Right(AstPtr::new(&extern_crate)),
374 );
345 } 375 }
346 } 376 }
347 377
@@ -372,8 +402,14 @@ impl RawItemsCollector {
372 self.push_item(current_module, attrs, RawItemKind::Impl(imp)) 402 self.push_item(current_module, attrs, RawItemKind::Impl(imp))
373 } 403 }
374 404
375 fn push_import(&mut self, current_module: Option<Module>, attrs: Attrs, data: ImportData) { 405 fn push_import(
376 let import = self.raw_items.imports.alloc(data); 406 &mut self,
407 current_module: Option<Module>,
408 attrs: Attrs,
409 data: ImportData,
410 source: ImportSourcePtr,
411 ) {
412 let import = self.imports.alloc(|| source, || data);
377 self.push_item(current_module, attrs, RawItemKind::Import(import)) 413 self.push_item(current_module, attrs, RawItemKind::Import(import))
378 } 414 }
379 415
diff --git a/crates/ra_hir_def/src/trace.rs b/crates/ra_hir_def/src/trace.rs
index 9769e88df..2bcd707bc 100644
--- a/crates/ra_hir_def/src/trace.rs
+++ b/crates/ra_hir_def/src/trace.rs
@@ -18,6 +18,10 @@ pub(crate) struct Trace<ID: ArenaId, T, V> {
18} 18}
19 19
20impl<ID: ra_arena::ArenaId + Copy, T, V> Trace<ID, T, V> { 20impl<ID: ra_arena::ArenaId + Copy, T, V> Trace<ID, T, V> {
21 pub(crate) fn new() -> Trace<ID, T, V> {
22 Trace { arena: Some(Arena::default()), map: Some(ArenaMap::default()), len: 0 }
23 }
24
21 pub(crate) fn new_for_arena() -> Trace<ID, T, V> { 25 pub(crate) fn new_for_arena() -> Trace<ID, T, V> {
22 Trace { arena: Some(Arena::default()), map: None, len: 0 } 26 Trace { arena: Some(Arena::default()), map: None, len: 0 }
23 } 27 }
@@ -48,4 +52,8 @@ impl<ID: ra_arena::ArenaId + Copy, T, V> Trace<ID, T, V> {
48 pub(crate) fn into_map(mut self) -> ArenaMap<ID, V> { 52 pub(crate) fn into_map(mut self) -> ArenaMap<ID, V> {
49 self.map.take().unwrap() 53 self.map.take().unwrap()
50 } 54 }
55
56 pub(crate) fn into_arena_and_map(mut self) -> (Arena<ID, T>, ArenaMap<ID, V>) {
57 (self.arena.take().unwrap(), self.map.take().unwrap())
58 }
51} 59}