mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 15:21:12 +00:00
Reduce Boxing for Apply
This commit is contained in:
parent
9b13df8fd7
commit
55020f6d9f
3 changed files with 3 additions and 3 deletions
|
@ -13,7 +13,7 @@ pub enum Expr {
|
|||
|
||||
// Functions
|
||||
Func(String, Box<Expr>),
|
||||
Apply(Box<Expr>, Box<Expr>),
|
||||
Apply(Box<(Expr, Expr)>),
|
||||
Operator(Box<Expr>, Operator, Box<Expr>),
|
||||
Closure(Vec<Pattern>, Box<Expr>),
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue