mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-02 08:11:12 +00:00
fix field name
This commit is contained in:
parent
61300f782d
commit
acb2bc7092
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ pub enum Expr2 {
|
||||||
List {
|
List {
|
||||||
list_var: Variable, // 4B - required for uniqueness of the list
|
list_var: Variable, // 4B - required for uniqueness of the list
|
||||||
elem_var: Variable, // 4B
|
elem_var: Variable, // 4B
|
||||||
first_elem: PoolVec<Expr2>, // 8B
|
elems: PoolVec<Expr2>, // 8B
|
||||||
},
|
},
|
||||||
If {
|
If {
|
||||||
cond_var: Variable, // 4B
|
cond_var: Variable, // 4B
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue