From 8c0816995afaaf34cbfe903e6da68d8b6d8e8c39 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 1 Nov 2017 20:11:44 -0700 Subject: [PATCH] Added empty string check. --- nomsu.lua | 3 +++ nomsu.moon | 1 + 2 files changed, 4 insertions(+) diff --git a/nomsu.lua b/nomsu.lua index f7182ba..fa77c1c 100644 --- a/nomsu.lua +++ b/nomsu.lua @@ -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() diff --git a/nomsu.moon b/nomsu.moon index e57954d..899b1fc 100755 --- a/nomsu.moon +++ b/nomsu.moon @@ -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!