mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-27 05:23:24 +00:00
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`.
This commit is contained in:
commit
c4681ea2cc
1 changed files with 1 additions and 0 deletions
|
@ -2784,6 +2784,7 @@ impl From<ModuleDef> for ItemInNs {
|
|||
ModuleDef::Static(_) | ModuleDef::Const(_) | ModuleDef::Function(_) => {
|
||||
ItemInNs::Values(module_def)
|
||||
}
|
||||
ModuleDef::Macro(it) => ItemInNs::Macros(it),
|
||||
_ => ItemInNs::Types(module_def),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue