Merge branch 'trunk' into rename-map-to-dict

This commit is contained in:
Chadtech 2020-12-07 20:33:12 -05:00 committed by GitHub
commit 6d977fef58
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
41 changed files with 2183 additions and 1438 deletions

View file

@ -12,6 +12,11 @@ impl Ident {
}
}
pub struct QualifiedModuleName<'a> {
pub opt_package: Option<&'a str>,
pub module: ModuleName,
}
#[derive(Clone, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct ModuleName(InlinableString);