status: output all crates a file belongs to

This commit is contained in:
Jonas Schievink 2022-01-17 18:10:01 +01:00
parent 1861654623
commit a3d06f824b

View file

@ -45,10 +45,12 @@ pub(crate) fn status(db: &RootDatabase, file_id: Option<FileId>) -> String {
if let Some(file_id) = file_id {
format_to!(buf, "\nFile info:\n");
let krate = crate::parent_module::crate_for(db, file_id).pop();
match krate {
Some(krate) => {
let crates = crate::parent_module::crate_for(db, file_id);
if crates.is_empty() {
format_to!(buf, "Does not belong to any crate");
}
let crate_graph = db.crate_graph();
for krate in crates {
let display_crate = |krate: CrateId| match &crate_graph[krate].display_name {
Some(it) => format!("{}({:?})", it, krate),
None => format!("{:?}", krate),
@ -61,8 +63,6 @@ pub(crate) fn status(db: &RootDatabase, file_id: Option<FileId>) -> String {
.format(", ");
format_to!(buf, "Dependencies: {}\n", deps);
}
None => format_to!(buf, "Does not belong to any crate"),
}
}
buf.trim().to_string()