mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 04:08:19 +00:00
bring expectation info to the running code
This commit is contained in:
parent
7b8c73325f
commit
9d0e3e42d3
4 changed files with 42 additions and 8 deletions
|
@ -631,6 +631,7 @@ pub struct MonomorphizedModule<'a> {
|
|||
pub exposed_to_host: ExposedToHost,
|
||||
pub sources: MutMap<ModuleId, (PathBuf, Box<str>)>,
|
||||
pub timings: MutMap<ModuleId, ModuleTiming>,
|
||||
pub expectations: VecMap<ModuleId, Expectations>,
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
|
@ -2735,6 +2736,7 @@ fn finish_specialization(
|
|||
sources,
|
||||
timings: state.timings,
|
||||
toplevel_expects,
|
||||
expectations: VecMap::default(),
|
||||
})
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue