mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
get rid of unneeded field on SolvedModule
This commit is contained in:
parent
c64f768abe
commit
d9c3a7ddd9
2 changed files with 5 additions and 10 deletions
|
@ -9,12 +9,11 @@ use roc_types::types::Alias;
|
|||
|
||||
#[derive(Debug)]
|
||||
pub struct SolvedModule {
|
||||
pub aliases: MutMap<Symbol, Alias>,
|
||||
pub problems: Vec<solve::TypeError>,
|
||||
|
||||
/// All exposed symbols. Annoyingly, this does not differentiate beteen
|
||||
/// types and values
|
||||
pub exposed_symbols: Vec<Symbol>,
|
||||
/// all aliases and their definitions. this has to include non-exposed aliases
|
||||
/// because exposed aliases can depend on non-exposed ones)
|
||||
pub aliases: MutMap<Symbol, Alias>,
|
||||
|
||||
/// Used when the goal phase is TypeChecking, and
|
||||
/// to create the types for HostExposed. This
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue