lua_code/lib.rs
1//! Bytecode emitter and opcode definitions.
2//!
3//! Phase A scope. See PORT_STRATEGY.md §4.
4
5pub mod opcode_names;
6pub mod opcodes;
7
8// ──────────────────────────────────────────────────────────────────────────
9// PORT STATUS
10// source: (composite crate; see opcode_names.rs for the first port)
11// target_crate: lua-code
12// confidence: high
13// todos: 0
14// port_notes: 0
15// unsafe_blocks: 0
16// notes: module aggregator
17// ──────────────────────────────────────────────────────────────────────────