Codegen tweak

This commit is contained in:
Bruce Hill 2018-12-14 19:25:59 -08:00
parent 83a40b7493
commit 2360ada21f
2 changed files with 10 additions and 7 deletions

View File

@ -236,15 +236,16 @@ local compile = setmetatable({
end
local lua = LuaCode:from(tree.source)
lua:add((stub):as_lua_id(), "(")
for i, arg in ipairs(tree:get_args()) do
for argnum, arg in ipairs(tree:get_args()) do
local arg_lua = compile(arg)
if arg.type == "Block" then
arg_lua = LuaCode:from(arg.source, "(function()\n ", arg_lua, "\nend)()")
end
if i > 1 then
lua:add(",")
if lua:trailing_line_len() + #arg_lua:text() > MAX_LINE then
lua:add(argnum > 1 and ",\n " or "\n ")
elseif argnum > 1 then
lua:add(", ")
end
lua:add(lua:trailing_line_len() + #arg_lua:text() > MAX_LINE and "\n " or " ")
lua:add(arg_lua)
end
lua:add(")")

View File

@ -174,12 +174,14 @@ compile = setmetatable({
lua = LuaCode\from(tree.source)
lua\add((stub)\as_lua_id!,"(")
for i, arg in ipairs tree\get_args!
for argnum, arg in ipairs tree\get_args!
arg_lua = compile(arg)
if arg.type == "Block"
arg_lua = LuaCode\from(arg.source, "(function()\n ", arg_lua, "\nend)()")
lua\add "," if i > 1
lua\add(lua\trailing_line_len! + #arg_lua\text! > MAX_LINE and "\n " or " ")
if lua\trailing_line_len! + #arg_lua\text! > MAX_LINE
lua\add(argnum > 1 and ",\n " or "\n ")
elseif argnum > 1
lua\add ", "
lua\add arg_lua
lua\add ")"
return lua