mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-02 00:01:16 +00:00
feat: build a map of package qualified module names
This commit is contained in:
parent
475eb777b2
commit
f72a63edbb
3 changed files with 150 additions and 17 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue