diff options
author | Vincent Ambo <mail@tazj.in> | 2021-01-18T00·21+0300 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-01-18T00·24+0000 |
commit | 1ff7a2686c2d7e405e597f9ac8a96189ec161d58 (patch) | |
tree | 1e6613d559744b9722329fa927dd78ce670581ca /users/tazjin/rlox/src/bytecode/vm.rs | |
parent | d6d3c12efbcec61b3d868bc7d3f861fdb91835a5 (diff) |
refactor(tazjin/rlox): Add Interpreter trait for switching impls r/2129
Change-Id: Iae28d64ce879014c5e5d7e145c536c1f16ad307d Reviewed-on: https://cl.tvl.fyi/c/depot/+/2418 Reviewed-by: tazjin <mail@tazj.in> Tested-by: BuildkiteCI
Diffstat (limited to 'users/tazjin/rlox/src/bytecode/vm.rs')
-rw-r--r-- | users/tazjin/rlox/src/bytecode/vm.rs | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/users/tazjin/rlox/src/bytecode/vm.rs b/users/tazjin/rlox/src/bytecode/vm.rs index fd91cd7be627..33bc358f44e8 100644 --- a/users/tazjin/rlox/src/bytecode/vm.rs +++ b/users/tazjin/rlox/src/bytecode/vm.rs @@ -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, |