*actual* fix for the codegen for (do: if (yes) (: say "hi"); say "done")
example
This commit is contained in:
parent
ddc7b8e70c
commit
e5e47cb9ee
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user