Fix for (..)-indented actions not handling newlines right.
This commit is contained in:
parent
9cfabfd435
commit
8deb59b6a7
@ -1002,7 +1002,7 @@ do
|
|||||||
end
|
end
|
||||||
local indented = self:tree_to_nomsu(t, pop_comments, space)
|
local indented = self:tree_to_nomsu(t, pop_comments, space)
|
||||||
if t.type == "Action" and not (tree.type == "Block" or tree.type == "FileChunks") then
|
if t.type == "Action" and not (tree.type == "Block" or tree.type == "FileChunks") then
|
||||||
indented:prepend("(..)\n ", pop_comments(t.source.start))
|
indented = NomsuCode(t.source, "(..)\n ", pop_comments(t.source.start), indented)
|
||||||
end
|
end
|
||||||
return indented
|
return indented
|
||||||
end
|
end
|
||||||
|
@ -636,8 +636,7 @@ with NomsuCompiler
|
|||||||
return inline if inline and #tostring(inline) <= space
|
return inline if inline and #tostring(inline) <= space
|
||||||
indented = @tree_to_nomsu(t, pop_comments, space)
|
indented = @tree_to_nomsu(t, pop_comments, space)
|
||||||
if t.type == "Action" and not (tree.type == "Block" or tree.type == "FileChunks")
|
if t.type == "Action" and not (tree.type == "Block" or tree.type == "FileChunks")
|
||||||
indented\prepend("(..)\n ", pop_comments(t.source.start))
|
indented = NomsuCode(t.source, "(..)\n ", pop_comments(t.source.start), indented)
|
||||||
--return inline if inline and #tostring(indented) <= #tostring(inline) + 10
|
|
||||||
return indented
|
return indented
|
||||||
|
|
||||||
switch tree.type
|
switch tree.type
|
||||||
|
Loading…
Reference in New Issue
Block a user