aboutsummaryrefslogtreecommitdiff
path: root/src/ast/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ast/mod.rs')
-rw-r--r--src/ast/mod.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ast/mod.rs b/src/ast/mod.rs
index 04b1d26..d006737 100644
--- a/src/ast/mod.rs
+++ b/src/ast/mod.rs
@@ -39,9 +39,6 @@ pub enum Stmt {
Return {
value: Expr,
},
- Print {
- value: Expr,
- },
}
#[derive(Debug, Eq, PartialEq)]
@@ -55,6 +52,10 @@ pub enum Expr {
Literal(Literal),
Variable(String),
Grouping(Box<Expr>),
+ Call {
+ ident: String,
+ arguments: Vec<Expr>,
+ },
Binary {
operator: TokenType,
lhs: Box<Expr>,