Cleaned out some dead code.

This commit is contained in:
Bruce Hill 2017-09-12 21:53:45 -07:00
parent df552640f3
commit 395e6c8e5b
2 changed files with 2 additions and 18 deletions

View File

@ -238,14 +238,6 @@ do
if self.debug then
print("\nGENERATED LUA CODE:\n" .. tostring(code))
end
local _ = [==[ lua_thunk, err = loadstring(code)
if not lua_thunk
error("Failed to compile generated code:\n#{code}\n\n#{err}")
action = lua_thunk!
if @debug
print("Running...")
return action(self, {})
]==]
return code
end,
parse = function(self, str)

View File

@ -148,19 +148,11 @@ class Compiler
run: (text)=>
if @debug
print "RUNNING TEXT:\n#{text}"
-- This will execute each chunk as it goes along
code = @compile(text)
if @debug
print "\nGENERATED LUA CODE:\n#{code}"
[==[
lua_thunk, err = loadstring(code)
if not lua_thunk
error("Failed to compile generated code:\n#{code}\n\n#{err}")
action = lua_thunk!
if @debug
print("Running...")
return action(self, {})
]==]
code
return code
parse: (str)=>
if @debug