Skip to content

Commit 9b33872

Browse files
committed
Auto merge of #17469 - roife:fix-issue-17425, r=Veykril
fix: use ItemInNs::Macros to convert ModuleItem to ItemInNs fix #17425. When converting `PathResolution` to `ItemInNs`, we should convert `ModuleDef::Macro` to `ItemInNs::Macros` to ensure that it can be found in `DefMap`.
2 parents 398e3a3 + 51b138c commit 9b33872

File tree

1 file changed

+1
-0
lines changed
  • src/tools/rust-analyzer/crates/hir/src

1 file changed

+1
-0
lines changed

src/tools/rust-analyzer/crates/hir/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2784,6 +2784,7 @@ impl From<ModuleDef> for ItemInNs {
27842784
ModuleDef::Static(_) | ModuleDef::Const(_) | ModuleDef::Function(_) => {
27852785
ItemInNs::Values(module_def)
27862786
}
2787+
ModuleDef::Macro(it) => ItemInNs::Macros(it),
27872788
_ => ItemInNs::Types(module_def),
27882789
}
27892790
}

0 commit comments

Comments
 (0)