Error builtin

This commit is contained in:
Andrew Morris
2023-03-21 16:06:53 +11:00
parent e94876fc68
commit e657604cbe
9 changed files with 190 additions and 15 deletions

View File

@@ -1,10 +1,11 @@
use std::rc::Rc;
use super::vs_value::Val;
use super::bytecode_stack_frame::BytecodeStackFrame;
use super::bytecode_decoder::BytecodeDecoder;
use super::bytecode_stack_frame::BytecodeStackFrame;
use super::stack_frame::StackFrame;
use super::vs_value::Val;
#[derive(Debug)]
pub struct VsFunction {
pub bytecode: Rc<Vec<u8>>,
pub register_count: usize,