mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 04:08:19 +00:00
Move desugaring to new roc_can_solo crate
This commit is contained in:
parent
b183ba19ae
commit
fce14d31b0
72 changed files with 3294 additions and 2630 deletions
|
@ -12,6 +12,7 @@ use std::collections::hash_map::Entry;
|
|||
pub enum Phase {
|
||||
LoadHeader,
|
||||
Parse,
|
||||
SoloCanonicalize,
|
||||
CanonicalizeAndConstrain,
|
||||
SolveTypes,
|
||||
FindSpecializations,
|
||||
|
@ -19,9 +20,10 @@ pub enum Phase {
|
|||
}
|
||||
|
||||
/// NOTE keep up to date manually, from ParseAndGenerateConstraints to the highest phase we support
|
||||
const PHASES: [Phase; 6] = [
|
||||
const PHASES: [Phase; 7] = [
|
||||
Phase::LoadHeader,
|
||||
Phase::Parse,
|
||||
Phase::SoloCanonicalize,
|
||||
Phase::CanonicalizeAndConstrain,
|
||||
Phase::SolveTypes,
|
||||
Phase::FindSpecializations,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue