piccolo 0.3.3

Stackless Lua VM implemented in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod compiler;
pub mod interning;
pub mod lexer;
mod operators;
pub mod parser;
mod register_allocator;

pub use self::{
    compiler::{compile_chunk, CompileError, CompileErrorKind, CompiledPrototype, FunctionRef},
    interning::StringInterner,
    lexer::LineNumber,
    parser::parse_chunk,
    parser::{ParseError, ParseErrorKind},
};