Added fix for "_end"
This commit is contained in:
parent
f415033fac
commit
1e99bbbe0a
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user