franko / luajit-lang-toolkit

A Lua bytecode compiler written in Lua itself for didactic purposes or for new language implementations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Parenthesis is removed in table

gnois opened this issue · comments

commented

This assertion fails

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