Fix for nomsu codegen for methods.

This commit is contained in:
Bruce Hill 2018-12-14 17:55:08 -08:00
parent 6ba84a0f50
commit b38d9e0062
2 changed files with 2 additions and 0 deletions

View File

@ -340,6 +340,7 @@ tree_to_nomsu = function(tree)
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(recurse(tree[2]))
return nomsu return nomsu
elseif "EscapedNomsu" == _exp_0 then elseif "EscapedNomsu" == _exp_0 then
nomsu = recurse(tree[1]) nomsu = recurse(tree[1])

View File

@ -265,6 +265,7 @@ tree_to_nomsu = (tree)->
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 recurse(tree[2])
return nomsu return nomsu
when "EscapedNomsu" when "EscapedNomsu"