Added fix for "_end"

This commit is contained in:
Bruce Hill 2019-03-13 20:53:30 -07:00
parent f415033fac
commit 1e99bbbe0a
2 changed files with 2 additions and 2 deletions

View File

@ -255,7 +255,7 @@ compile = function(self, tree)
end
local line_lua = self:compile(line)
lua:add(line_lua)
if not (line_lua:last(1) == ";" or line_lua:last(4):match("[^a-zA-Z0-9]end$")) then
if not (line_lua:last(1) == ";" or line_lua:last(4):match("[^_a-zA-Z0-9]end$")) then
lua:add(";")
end
end

View File

@ -208,7 +208,7 @@ compile = (tree)=>
if i > 1 then lua\add "\n"
line_lua = @compile(line)
lua\add line_lua
unless line_lua\last(1) == ";" or line_lua\last(4)\match("[^a-zA-Z0-9]end$")
unless line_lua\last(1) == ";" or line_lua\last(4)\match("[^_a-zA-Z0-9]end$")
lua\add ";"
return lua