lua_vm/table.rs
1//! Lua table — canonical implementation now lives in `lua-types::table`.
2//!
3//! This file is a thin re-export for compatibility with workspace
4//! consumers (`lua-lex`, `lua-vm::trace_impls`) that previously
5//! imported `lua_vm::table::LuaTable`. The interesting code has moved
6//! to `crates/lua-types/src/table.rs`; see the doc comment there.
7
8pub use lua_types::table::{LuaTable, TableFlags, TableNode, TableSlotRef};