feat(tazjin/rlox): Add support for print statement

Change-Id: Ic3e7e722325c8784b848c0bcd573c2e51e123c40
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2583
Reviewed-by: tazjin <mail@tazj.in>
Tested-by: BuildkiteCI
This commit is contained in:
Vincent Ambo 2021-03-02 22:15:08 +02:00 committed by tazjin
parent 432e7a7ddd
commit 2cd77ea26d
3 changed files with 61 additions and 5 deletions

View file

@ -72,6 +72,10 @@ impl VM {
match op {
OpCode::OpReturn => {
if self.stack.is_empty() {
return Ok(Value::Nil);
}
let val = self.pop();
return Ok(self.return_value(val));
}
@ -135,6 +139,11 @@ impl VM {
})
}
}
OpCode::OpPrint => {
let val = self.pop();
println!("{}", self.print_value(val));
}
}
#[cfg(feature = "disassemble")]
@ -159,6 +168,16 @@ impl VM {
LoxString::Interned(id) => self.strings.lookup(*id),
}
}
fn print_value(&self, val: Value) -> String {
match val {
Value::String(LoxString::Heap(s)) => s,
Value::String(LoxString::Interned(id)) => {
self.strings.lookup(id).into()
}
_ => format!("{:?}", val),
}
}
}
pub fn interpret(strings: Interner, chunk: chunk::Chunk) -> LoxResult<Value> {