lua-vm 0.7.0

omniLua's bytecode virtual machine and interpreter loop — internal crate; depend on `omnilua`.
Documentation
1
2
3
4
5
6
7
8
//! Lua table — canonical implementation now lives in `lua-types::table`.
//!
//! This file is a thin re-export for compatibility with workspace
//! consumers (`lua-lex`, `lua-vm::trace_impls`) that previously
//! imported `lua_vm::table::LuaTable`. The interesting code has moved
//! to `crates/lua-types/src/table.rs`; see the doc comment there.

pub use lua_types::table::{LuaTable, TableFlags, TableNode, TableSlotRef};