rilua 0.1.20

Lua 5.1.1 implemented in Rust, targeting the World of Warcraft addon variant.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Virtual machine: bytecode execution and runtime state.

pub mod callinfo;
pub mod closure;
pub mod debug_info;
pub mod dump;
pub mod execute;
pub mod gc;
pub mod instructions;
pub mod listing;
pub mod metatable;
pub mod proto;
pub mod state;
pub mod string;
pub mod table;
pub mod undump;
pub mod value;