*actual* fix for the codegen for (do: if (yes) (: say "hi"); say "done")

example
This commit is contained in:
Bruce Hill 2018-07-19 17:00:38 -07:00
parent ddc7b8e70c
commit e5e47cb9ee
2 changed files with 2 additions and 2 deletions

View File

@ -824,7 +824,7 @@ do
return nil return nil
end end
if bit.type == "Block" then if bit.type == "Block" then
if i == 1 or i < #tree or (options.inside_multiblock and #bit > 1) then if i == 1 or i < #tree or options.inside_multiblock then
if i > 1 then if i > 1 then
nomsu:append(" ") nomsu:append(" ")
end end

View File

@ -534,7 +534,7 @@ with NomsuCompiler
arg_nomsu = recurse(bit,inline:true) arg_nomsu = recurse(bit,inline:true)
return nil unless arg_nomsu return nil unless arg_nomsu
if bit.type == "Block" if bit.type == "Block"
if i == 1 or i < #tree or (options.inside_multiblock and #bit > 1) if i == 1 or i < #tree or options.inside_multiblock
nomsu\append " " if i > 1 nomsu\append " " if i > 1
arg_nomsu\parenthesize! arg_nomsu\parenthesize!
nomsu\append arg_nomsu nomsu\append arg_nomsu