Table output improvement
toxamin opened this issue · 0 comments
toxamin commented
When given the following script:
local tbl = {
{},
[100000] = {}
}
Metaworm's luadec either:
- generates a file with over 100 thousand lines (luajit):
local r0_0 = {
{},
nil,
nil,
nil,
nil,
nil,
nil,
nil
...
- fails to generate the second value at all, like so:
local r0_0 = {
{}
}