refactor(tazjin/rlox): Unify parser::Statement & parser::Declaration

Change-Id: I6f21b246eb9d3bf760edb3220ce6be5de5b05b08
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2302
Reviewed-by: tazjin <mail@tazj.in>
Tested-by: BuildkiteCI
This commit is contained in:
Vincent Ambo 2020-12-31 17:59:19 +03:00 committed by tazjin
parent 26ed836e1d
commit 3c979acdf3
2 changed files with 20 additions and 27 deletions

View file

@ -1,5 +1,5 @@
use crate::errors::{Error, ErrorKind};
use crate::parser::{self, Declaration, Expr, Literal, Program, Statement};
use crate::parser::{self, Expr, Literal, Program, Statement};
use crate::scanner::{self, TokenKind};
use std::collections::HashMap;
use std::rc::Rc;
@ -78,6 +78,14 @@ pub struct Interpreter {
}
impl Interpreter {
pub fn interpret<'a>(&mut self, program: &Program<'a>) -> Result<(), Error> {
for stmt in program {
self.interpret_stmt(stmt)?;
}
Ok(())
}
fn interpret_stmt<'a>(&mut self, stmt: &Statement<'a>) -> Result<(), Error> {
match stmt {
Statement::Expr(expr) => {
@ -87,6 +95,7 @@ impl Interpreter {
let result = self.eval(expr)?;
println!("{:?}", result)
}
Statement::Var(var) => return self.interpret_var(var),
}
Ok(())
@ -102,17 +111,6 @@ impl Interpreter {
return Ok(());
}
pub fn interpret<'a>(&mut self, program: &Program<'a>) -> Result<(), Error> {
for decl in program {
match decl {
Declaration::Stmt(stmt) => self.interpret_stmt(stmt)?,
Declaration::Var(var) => self.interpret_var(var)?,
}
}
Ok(())
}
fn eval<'a>(&mut self, expr: &Expr<'a>) -> Result<Literal, Error> {
match expr {
Expr::Assign(assign) => self.eval_assign(assign),