Fixed a bug where if an indented string interpolation was at the end of

an indented text, the nomsu codegen would fail to put a "\n.." after it,
so it wouldn't parse as an iterpolation.
This commit is contained in:
Bruce Hill 2018-07-26 15:59:21 -07:00
parent e7c3455d4f
commit f6e9bdc1c0
2 changed files with 2 additions and 2 deletions

View File

@ -1159,7 +1159,7 @@ do
end end
end end
nomsu:append(interp_nomsu) nomsu:append(interp_nomsu)
if interp_nomsu:is_multiline() and i < #tree then if interp_nomsu:is_multiline() then
nomsu:append("\n..") nomsu:append("\n..")
end end
end end

View File

@ -743,7 +743,7 @@ with NomsuCompiler
elseif bit.type != "List" and bit.type != "Dict" elseif bit.type != "List" and bit.type != "Dict"
interp_nomsu\parenthesize! interp_nomsu\parenthesize!
nomsu\append interp_nomsu nomsu\append interp_nomsu
if interp_nomsu\is_multiline! and i < #tree if interp_nomsu\is_multiline!
nomsu\append "\n.." nomsu\append "\n.."
nomsu = NomsuCode(tree.source) nomsu = NomsuCode(tree.source)
add_text(nomsu, tree) add_text(nomsu, tree)