mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 22:09:09 +00:00
Aliases should not be public
This commit is contained in:
parent
67bb5b14f6
commit
ac680d0750
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ pub struct Scope {
|
||||||
symbols: SendMap<Symbol, Region>,
|
symbols: SendMap<Symbol, Region>,
|
||||||
|
|
||||||
/// The type aliases currently in scope
|
/// The type aliases currently in scope
|
||||||
pub aliases: SendMap<Symbol, Alias>,
|
aliases: SendMap<Symbol, Alias>,
|
||||||
|
|
||||||
/// The current module being processed. This will be used to turn
|
/// The current module being processed. This will be used to turn
|
||||||
/// unqualified idents into Symbols.
|
/// unqualified idents into Symbols.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue