luna-core 2.12.0

Pure-Rust Lua runtime (interpreter only, zero third-party dependencies). The JIT-equipped variant lives in the `luna-jit` crate.
Documentation
1
2
3
4
-- v2.12 CORPUS-III: debug.getinfo (source/line/what only).
local info = debug.getinfo(1, "Sl")
print(type(info), info.currentline > 0, info.what)
-- source path is impl-specific, don't compare