mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
Fix errors
This commit is contained in:
parent
da421068f1
commit
703ef6608e
8 changed files with 167 additions and 20 deletions
|
@ -45,6 +45,7 @@ pub struct LoadedModule {
|
|||
pub timings: MutMap<ModuleId, ModuleTiming>,
|
||||
pub docs_by_module: VecMap<ModuleId, ModuleDocumentation>,
|
||||
pub abilities_store: AbilitiesStore,
|
||||
pub typechecked: MutMap<ModuleId, CheckedModule>,
|
||||
}
|
||||
|
||||
impl LoadedModule {
|
||||
|
@ -129,6 +130,13 @@ pub struct TypeCheckedModule<'a> {
|
|||
pub checkmate: Option<roc_checkmate::Collector>,
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct CheckedModule {
|
||||
pub solved_subs: Solved<Subs>,
|
||||
pub decls: Declarations,
|
||||
pub abilities_store: AbilitiesStore,
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
pub(crate) struct FoundSpecializationsModule<'a> {
|
||||
pub(crate) ident_ids: IdentIds,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue