lua-code 0.0.7

Lua 5.4 runtime port in Rust with an AI-assisted C-to-Rust porting harness.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Bytecode emitter and opcode definitions.
//!
//! Phase A scope. See PORT_STRATEGY.md §4.

pub mod opcode_names;
pub mod opcodes;

// ──────────────────────────────────────────────────────────────────────────
// PORT STATUS
//   source:        (composite crate; see opcode_names.rs for the first port)
//   target_crate:  lua-code
//   confidence:    high
//   todos:         0
//   port_notes:    0
//   unsafe_blocks: 0
//   notes:         module aggregator
// ──────────────────────────────────────────────────────────────────────────