Fixed multi-line methodcalls

This commit is contained in:
Bruce Hill 2018-12-14 18:25:16 -08:00
parent 5b6095b805
commit a7adc8cbff
2 changed files with 2 additions and 2 deletions

View File

@ -339,7 +339,7 @@ tree_to_nomsu = function(tree)
target_nomsu:parenthesize() target_nomsu:parenthesize()
end end
nomsu:add(target_nomsu) nomsu:add(target_nomsu)
nomsu:add(target_nomsu:is_multiline() and " \\\n..|" or "|") nomsu:add(target_nomsu:is_multiline() and "\n..|" or "|")
nomsu:add(tree_to_nomsu(tree[2])) nomsu:add(tree_to_nomsu(tree[2]))
return nomsu return nomsu
elseif "EscapedNomsu" == _exp_0 then elseif "EscapedNomsu" == _exp_0 then

View File

@ -264,7 +264,7 @@ tree_to_nomsu = (tree)->
if tree[1].type == "Block" and not target_nomsu\is_multiline! if tree[1].type == "Block" and not target_nomsu\is_multiline!
target_nomsu\parenthesize! target_nomsu\parenthesize!
nomsu\add target_nomsu nomsu\add target_nomsu
nomsu\add(target_nomsu\is_multiline! and " \\\n..|" or "|") nomsu\add(target_nomsu\is_multiline! and "\n..|" or "|")
nomsu\add tree_to_nomsu(tree[2]) nomsu\add tree_to_nomsu(tree[2])
return nomsu return nomsu