Fix docs generation of types

This commit is contained in:
Richard Feldman 2022-11-30 21:32:35 -05:00
parent f0b3c3eb08
commit ab45d6c632
No known key found for this signature in database
GPG key ID: F1F21AA5B1D9E43B
2 changed files with 26 additions and 21 deletions

View file

@ -654,6 +654,13 @@ impl LoadedModule {
.map(|symbol| symbol.as_str(&self.interns))
.collect()
}
pub fn exposed_aliases_str(&self) -> Vec<&str> {
self.exposed_aliases
.keys()
.map(|symbol| symbol.as_str(&self.interns))
.collect()
}
}
#[derive(Debug)]