11882: internal: Record outline child modules with missing backing file in def map r=Veykril a=Veykril

bors r+

Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
This commit is contained in:
bors[bot] 2022-04-02 14:19:38 +00:00 committed by GitHub
commit d312b4519a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 0 deletions

View File

@ -1743,6 +1743,12 @@ impl ModCollector<'_, '_> {
}
}
Err(candidates) => {
self.push_child_module(
module.name.clone(),
ast_id,
None,
&self.item_tree[module.visibility],
);
self.def_collector.def_map.diagnostics.push(
DefDiagnostic::unresolved_module(self.module_id, ast_id, candidates),
);

View File

@ -375,9 +375,12 @@ pub struct Arc;
"#,
expect![[r#"
crate
alloc: t
alloc_crate: t
sync: t
crate::alloc
crate::sync
Arc: t v
"#]],
@ -401,9 +404,12 @@ pub struct Arc;
"#,
expect![[r#"
crate
alloc: t
alloc_crate: t
sync: t
crate::alloc
crate::sync
Arc: t v
"#]],

View File

@ -526,6 +526,9 @@ pub struct Baz;
"#,
expect![[r#"
crate
foo: t
crate::foo
"#]],
);
}