Added empty string check.

This commit is contained in:
Bruce Hill 2017-11-01 20:11:44 -07:00
parent 3ae1f696aa
commit 8c0816995a
2 changed files with 4 additions and 0 deletions

View File

@ -424,6 +424,9 @@ do
if max_operations == nil then
max_operations = nil
end
if src == "" then
return nil, "", vars
end
if max_operations then
local timeout
timeout = function()

View File

@ -323,6 +323,7 @@ class NomsuCompiler
return tree
run: (src, filename, vars={}, max_operations=nil)=>
if src == "" then return nil, "", vars
if max_operations
timeout = ->
debug.sethook!