diff options
author | Lukas Wirth <[email protected]> | 2021-04-09 16:14:48 +0100 |
---|---|---|
committer | Lukas Wirth <[email protected]> | 2021-04-09 16:14:48 +0100 |
commit | ec2895e95649ca87bcac54ee635abb8b6f78b086 (patch) | |
tree | 358a4e35f2b5ff074fce4618b562b050007f1df7 /crates/hir_def | |
parent | 354151df3556c5e2989746aa01a5aeb620ee9baa (diff) |
Insert unnamed consts to ChildBySource DynMap
Diffstat (limited to 'crates/hir_def')
-rw-r--r-- | crates/hir_def/src/child_by_source.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/hir_def/src/child_by_source.rs b/crates/hir_def/src/child_by_source.rs index f40a7f80d..f2e809ca9 100644 --- a/crates/hir_def/src/child_by_source.rs +++ b/crates/hir_def/src/child_by_source.rs | |||
@@ -80,6 +80,10 @@ impl ChildBySource for ModuleId { | |||
80 | impl ChildBySource for ItemScope { | 80 | impl ChildBySource for ItemScope { |
81 | fn child_by_source_to(&self, db: &dyn DefDatabase, res: &mut DynMap) { | 81 | fn child_by_source_to(&self, db: &dyn DefDatabase, res: &mut DynMap) { |
82 | self.declarations().for_each(|item| add_module_def(db, res, item)); | 82 | self.declarations().for_each(|item| add_module_def(db, res, item)); |
83 | self.unnamed_consts().for_each(|konst| { | ||
84 | let src = konst.lookup(db).source(db); | ||
85 | res[keys::CONST].insert(src, konst); | ||
86 | }); | ||
83 | self.impls().for_each(|imp| add_impl(db, res, imp)); | 87 | self.impls().for_each(|imp| add_impl(db, res, imp)); |
84 | 88 | ||
85 | fn add_module_def(db: &dyn DefDatabase, map: &mut DynMap, item: ModuleDefId) { | 89 | fn add_module_def(db: &dyn DefDatabase, map: &mut DynMap, item: ModuleDefId) { |