mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-01 07:41:12 +00:00
hook up list inc/dec
This commit is contained in:
parent
a248a92d9f
commit
a015dad566
5 changed files with 461 additions and 356 deletions
|
@ -96,9 +96,9 @@ impl<'a> Procs<'a> {
|
|||
|
||||
for (key, in_prog_proc) in self.specialized.into_iter() {
|
||||
match in_prog_proc {
|
||||
InProgress => unreachable!("should be done by now"),
|
||||
InProgress => unreachable!("The procedure {:?} should have be done by now", key),
|
||||
Done(mut proc) => {
|
||||
crate::inc_dec::visit_proc(arena, &mut proc).clone();
|
||||
crate::inc_dec::visit_proc(arena, &mut proc);
|
||||
result.insert(key, proc);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue