Fixed multi-line methodcalls
This commit is contained in:
parent
5b6095b805
commit
a7adc8cbff
@ -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
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user