koto_bytecode 0.16.1

The bytecode compiler used by the Koto programming language
Documentation
//! Contains Koto's compiler and its bytecode operations

#![warn(missing_docs)]

mod chunk;
mod compiler;
mod frame;
mod instruction;
mod instruction_reader;
mod module_loader;
mod op;

pub use crate::{
    chunk::{Chunk, DebugInfo},
    compiler::{Compiler, CompilerError, CompilerSettings},
    instruction::{FunctionFlags, Instruction, StringFormatFlags},
    instruction_reader::InstructionReader,
    module_loader::{ModuleLoader, ModuleLoaderError, find_module},
    op::Op,
};