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:
parent
e7c3455d4f
commit
f6e9bdc1c0
@ -1159,7 +1159,7 @@ do
|
||||
end
|
||||
end
|
||||
nomsu:append(interp_nomsu)
|
||||
if interp_nomsu:is_multiline() and i < #tree then
|
||||
if interp_nomsu:is_multiline() then
|
||||
nomsu:append("\n..")
|
||||
end
|
||||
end
|
||||
|
@ -743,7 +743,7 @@ with NomsuCompiler
|
||||
elseif bit.type != "List" and bit.type != "Dict"
|
||||
interp_nomsu\parenthesize!
|
||||
nomsu\append interp_nomsu
|
||||
if interp_nomsu\is_multiline! and i < #tree
|
||||
if interp_nomsu\is_multiline!
|
||||
nomsu\append "\n.."
|
||||
nomsu = NomsuCode(tree.source)
|
||||
add_text(nomsu, tree)
|
||||
|
Loading…
Reference in New Issue
Block a user