mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 15:21:12 +00:00
Rename Func to CallByName
This commit is contained in:
parent
41ddfc149b
commit
c85f246988
5 changed files with 19 additions and 19 deletions
|
@ -16,7 +16,7 @@ pub enum Expr {
|
|||
Assign(Pattern, Box<Expr>, Box<Expr>),
|
||||
|
||||
// Functions
|
||||
Func(Ident, Vec<Expr>),
|
||||
CallByName(Ident, Vec<Expr>),
|
||||
Apply(Box<Expr>, Vec<Expr>),
|
||||
Operator(Box<Expr>, Operator, Box<Expr>),
|
||||
Closure(SmallVec<[Pattern; 2]>, Box<Expr>),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue