Reduce Boxing for Apply

This commit is contained in:
Richard Feldman 2019-05-22 22:04:30 -04:00
parent 9b13df8fd7
commit 55020f6d9f
3 changed files with 3 additions and 3 deletions

View file

@ -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>),