luau-bytecode 0.732.0

Luau bytecode model, builder, serializer, and dumper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Luau bytecode definitions, builder, and function graph.

extern crate self as luau_bytecode;

pub mod builder;
mod dump;
pub mod error;
pub mod function;
pub mod graph;
pub mod model;
pub mod opcodes;
mod wire;