about summary refs log blame commit diff
path: root/users/tazjin/rlox/src/bytecode/mod.rs
blob: 117f17824ac62e572577c8c6c2c709018de22244 (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                                                            
          
             
           
             

           
       
 


            
                         
 


                                 
 


                         
 
                                                                                    

                                                          
     
 
//! Bytecode interpreter for Lox.
//!
//! https://craftinginterpreters.com/chunks-of-bytecode.html

mod chunk;
mod compiler;
mod errors;
mod interner;
mod opcode;
mod value;
mod vm;

#[cfg(test)]
mod tests;

pub struct Interpreter {}

impl crate::Lox for Interpreter {
    type Error = errors::Error;
    type Value = value::Value;

    fn create() -> Self {
        Interpreter {}
    }

    fn interpret(&mut self, code: String) -> Result<Self::Value, Vec<Self::Error>> {
        let (strings, chunk) = compiler::compile(&code)?;
        vm::interpret(strings, chunk).map_err(|e| vec![e])
    }
}