1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
//! # koto_bytecode
//!
//! Contains Koto's compiler and its bytecode operations
mod chunk;
mod compiler;
mod instruction_reader;
mod loader;
mod op;
pub use {
chunk::{Chunk, DebugInfo},
compiler::{Compiler, CompilerError, CompilerSettings},
instruction_reader::{FunctionFlags, Instruction, InstructionReader, TypeId},
loader::{Loader, LoaderError},
op::Op,
};