Aliases should not be public

This commit is contained in:
ayazhafiz 2022-02-12 21:23:44 -05:00
parent 67bb5b14f6
commit ac680d0750

View file

@ -17,7 +17,7 @@ pub struct Scope {
symbols: SendMap<Symbol, Region>,
/// 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
/// unqualified idents into Symbols.