mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-29 19:17:12 +00:00
Merge pull request #19706 from Veykril/push-nkpmknlvzyom
fix: Address minor FIXME
This commit is contained in:
commit
5adee2ad2c
5 changed files with 19 additions and 24 deletions
|
|
@ -263,8 +263,9 @@ impl<'a> SymbolCollector<'a> {
|
|||
for (name, Item { def, vis, import }) in scope.macros() {
|
||||
if let Some(i) = import {
|
||||
match i {
|
||||
ImportOrGlob::Import(i) => push_import(self, i, name, def.into(), vis),
|
||||
ImportOrGlob::Glob(_) => (),
|
||||
ImportOrExternCrate::Import(i) => push_import(self, i, name, def.into(), vis),
|
||||
ImportOrExternCrate::Glob(_) => (),
|
||||
ImportOrExternCrate::ExternCrate(_) => (),
|
||||
}
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue