internal: outline child modules with missing backing file

This commit is contained in:
Lukas Wirth 2022-04-02 16:14:19 +02:00
parent f610e2c2ed
commit 1da2d82f58
3 changed files with 15 additions and 0 deletions

View File

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

View File

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

View File

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