blob: 0776225bec91955e853c8adf80e2a28e959eda6e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
//! Bytecode interpreter for Lox.
//!
//! https://craftinginterpreters.com/chunks-of-bytecode.html
mod chunk;
mod compiler;
mod errors;
mod opcode;
mod value;
mod vm;
use chunk::Chunk;
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 chunk = compiler::compile(&code)?;
vm::interpret(chunk).map_err(|e| vec![e])
}
}
|