mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 22:34:45 +00:00
new code gen for Cond
This commit is contained in:
parent
263e4b4b6c
commit
a7af366c3a
4 changed files with 163 additions and 32 deletions
|
@ -591,6 +591,7 @@ define_builtins! {
|
|||
6 INT_LOWEST: "lowest"
|
||||
7 INT_ADD: "#add"
|
||||
8 INT_SUB: "#sub"
|
||||
9 INT_EQ: "#eq"
|
||||
}
|
||||
3 FLOAT: "Float" => {
|
||||
0 FLOAT_FLOAT: "Float" imported // the Float.Float type alias
|
||||
|
@ -603,6 +604,7 @@ define_builtins! {
|
|||
7 FLOAT_LOWEST: "lowest"
|
||||
8 FLOAT_ADD: "#add"
|
||||
9 FLOAT_SUB: "#sub"
|
||||
10 FLOAT_EQ: "#eq"
|
||||
}
|
||||
4 BOOL: "Bool" => {
|
||||
0 BOOL_BOOL: "Bool" imported // the Bool.Bool type alias
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue