refactor(tazjin/rlox): Add Interpreter trait for switching impls
Change-Id: Iae28d64ce879014c5e5d7e145c536c1f16ad307d Reviewed-on: https://cl.tvl.fyi/c/depot/+/2418 Reviewed-by: tazjin <mail@tazj.in> Tested-by: BuildkiteCI
This commit is contained in:
parent
d6d3c12efb
commit
1ff7a2686c
8 changed files with 125 additions and 102 deletions
|
@ -1,3 +1,5 @@
|
|||
use std::fmt;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub enum ErrorKind {
|
||||
// CompileError,
|
||||
|
@ -10,4 +12,10 @@ pub struct Error {
|
|||
pub kind: ErrorKind,
|
||||
}
|
||||
|
||||
impl fmt::Display for Error {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
write!(f, "[line NYI] Error: {:?}", self.kind)
|
||||
}
|
||||
}
|
||||
|
||||
pub type LoxResult<T> = Result<T, Error>;
|
||||
|
|
|
@ -9,19 +9,29 @@ mod value;
|
|||
mod vm;
|
||||
|
||||
use chunk::Chunk;
|
||||
use opcode::OpCode;
|
||||
pub struct Interpreter {}
|
||||
|
||||
pub fn main() {
|
||||
let mut chunk: Chunk = Default::default();
|
||||
impl crate::Lox for Interpreter {
|
||||
type Error = errors::Error;
|
||||
type Value = value::Value;
|
||||
|
||||
let constant = chunk.add_constant(1.2);
|
||||
chunk.add_op(OpCode::OpConstant(constant), 1);
|
||||
fn create() -> Self {
|
||||
Interpreter {}
|
||||
}
|
||||
|
||||
let constant = chunk.add_constant(2.0);
|
||||
chunk.add_op(OpCode::OpConstant(constant), 2);
|
||||
|
||||
chunk.add_op(OpCode::OpAdd, 3);
|
||||
chunk.add_op(OpCode::OpReturn, 4);
|
||||
|
||||
vm::interpret(chunk).expect("it should work");
|
||||
fn interpret(&mut self, _: String) -> Result<Self::Value, Vec<Self::Error>> {
|
||||
let chunk: Chunk = Default::default();
|
||||
vm::interpret(chunk).map_err(|e| vec![e])
|
||||
}
|
||||
}
|
||||
|
||||
// pub fn main() {
|
||||
// let mut chunk: Chunk = Default::default();
|
||||
// let constant = chunk.add_constant(1.2);
|
||||
// chunk.add_op(OpCode::OpConstant(constant), 1);
|
||||
// let constant = chunk.add_constant(2.0);
|
||||
// chunk.add_op(OpCode::OpConstant(constant), 2);
|
||||
// chunk.add_op(OpCode::OpAdd, 3);
|
||||
// chunk.add_op(OpCode::OpReturn, 4);
|
||||
// vm::interpret(chunk).expect("it should work");
|
||||
// }
|
||||
|
|
|
@ -32,7 +32,7 @@ macro_rules! binary_op {
|
|||
}
|
||||
|
||||
impl VM {
|
||||
fn run(&mut self) -> LoxResult<()> {
|
||||
fn run(&mut self) -> LoxResult<Value> {
|
||||
loop {
|
||||
let op = &self.chunk.code[self.ip];
|
||||
|
||||
|
@ -42,10 +42,7 @@ impl VM {
|
|||
self.ip += 1;
|
||||
|
||||
match op {
|
||||
OpCode::OpReturn => {
|
||||
println!("{:?}", self.pop());
|
||||
return Ok(());
|
||||
}
|
||||
OpCode::OpReturn => return Ok(self.pop()),
|
||||
|
||||
OpCode::OpConstant(idx) => {
|
||||
let c = *self.chunk.constant(*idx);
|
||||
|
@ -66,7 +63,7 @@ impl VM {
|
|||
}
|
||||
}
|
||||
|
||||
pub fn interpret(chunk: chunk::Chunk) -> LoxResult<()> {
|
||||
pub fn interpret(chunk: chunk::Chunk) -> LoxResult<Value> {
|
||||
let mut vm = VM {
|
||||
chunk,
|
||||
ip: 0,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue