mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 23:31:12 +00:00
hook up TypeError
This commit is contained in:
parent
6531845966
commit
14ad793bd7
18 changed files with 216 additions and 63 deletions
|
@ -52,7 +52,7 @@ pub struct LoadedModule {
|
|||
pub interns: Interns,
|
||||
pub solved: Solved<Subs>,
|
||||
pub can_problems: Vec<roc_problem::can::Problem>,
|
||||
pub type_problems: Vec<types::Problem>,
|
||||
pub type_problems: Vec<solve::TypeError>,
|
||||
pub declarations: Vec<Declaration>,
|
||||
}
|
||||
|
||||
|
@ -93,7 +93,7 @@ enum Msg {
|
|||
solved_types: MutMap<Symbol, SolvedType>,
|
||||
aliases: MutMap<Symbol, Alias>,
|
||||
subs: Arc<Solved<Subs>>,
|
||||
problems: Vec<types::Problem>,
|
||||
problems: Vec<solve::TypeError>,
|
||||
},
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue