Added empty string check.
This commit is contained in:
parent
3ae1f696aa
commit
8c0816995a
@ -424,6 +424,9 @@ do
|
|||||||
if max_operations == nil then
|
if max_operations == nil then
|
||||||
max_operations = nil
|
max_operations = nil
|
||||||
end
|
end
|
||||||
|
if src == "" then
|
||||||
|
return nil, "", vars
|
||||||
|
end
|
||||||
if max_operations then
|
if max_operations then
|
||||||
local timeout
|
local timeout
|
||||||
timeout = function()
|
timeout = function()
|
||||||
|
@ -323,6 +323,7 @@ class NomsuCompiler
|
|||||||
return tree
|
return tree
|
||||||
|
|
||||||
run: (src, filename, vars={}, max_operations=nil)=>
|
run: (src, filename, vars={}, max_operations=nil)=>
|
||||||
|
if src == "" then return nil, "", vars
|
||||||
if max_operations
|
if max_operations
|
||||||
timeout = ->
|
timeout = ->
|
||||||
debug.sethook!
|
debug.sethook!
|
||||||
|
Loading…
Reference in New Issue
Block a user