Fix for "\($x)abc" getting codegen'd to "$xabc"

This commit is contained in:
Bruce Hill 2018-12-14 20:16:18 -08:00
parent 64ba8aee07
commit 6abec65843
2 changed files with 9 additions and 2 deletions

View File

@ -424,7 +424,11 @@ tree_to_nomsu = function(tree)
local interp_nomsu = recurse(bit)
if not (interp_nomsu:is_multiline()) then
if bit.type == "Var" then
if type(tree[i + 1]) == 'string' and not match(tree[i + 1], "^[ \n\t,.:;#(){}[%]]") then
local next_str = tree[i + 1]
while type(next_str) == 'table' and next_str.type == 'Text' do
next_str = next_str[1]
end
if type(next_str) == 'string' and not match(next_str, "^[ \n\t,.:;#(){}[%]]") then
interp_nomsu:parenthesize()
end
elseif bit.type == "EscapedNomsu" or bit.type == "Block" or bit.type == "IndexChain" then

View File

@ -333,7 +333,10 @@ tree_to_nomsu = (tree)->
interp_nomsu = recurse(bit)
unless interp_nomsu\is_multiline!
if bit.type == "Var"
if type(tree[i+1]) == 'string' and not match(tree[i+1], "^[ \n\t,.:;#(){}[%]]")
next_str = tree[i+1]
while type(next_str) == 'table' and next_str.type == 'Text'
next_str = next_str[1]
if type(next_str) == 'string' and not match(next_str, "^[ \n\t,.:;#(){}[%]]")
interp_nomsu\parenthesize!
elseif bit.type == "EscapedNomsu" or bit.type == "Block" or bit.type == "IndexChain"
interp_nomsu\parenthesize!