franko / luajit-lang-toolkit

A Lua bytecode compiler written in Lua itself for didactic purposes or for new language implementations
Other
655 stars 91 forks source link

Parenthesis is removed in table #35

Closed gnois closed 7 years ago

gnois commented 7 years ago

This assertion fails

function f(...)
   return ...
end
local t = { (f(1,2,3)) }
assert(t[2] == nil)