Cleaned out some dead code.
This commit is contained in:
parent
df552640f3
commit
395e6c8e5b
@ -238,14 +238,6 @@ do
|
|||||||
if self.debug then
|
if self.debug then
|
||||||
print("\nGENERATED LUA CODE:\n" .. tostring(code))
|
print("\nGENERATED LUA CODE:\n" .. tostring(code))
|
||||||
end
|
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
|
return code
|
||||||
end,
|
end,
|
||||||
parse = function(self, str)
|
parse = function(self, str)
|
||||||
|
12
nomic.moon
12
nomic.moon
@ -148,19 +148,11 @@ class Compiler
|
|||||||
run: (text)=>
|
run: (text)=>
|
||||||
if @debug
|
if @debug
|
||||||
print "RUNNING TEXT:\n#{text}"
|
print "RUNNING TEXT:\n#{text}"
|
||||||
|
-- This will execute each chunk as it goes along
|
||||||
code = @compile(text)
|
code = @compile(text)
|
||||||
if @debug
|
if @debug
|
||||||
print "\nGENERATED LUA CODE:\n#{code}"
|
print "\nGENERATED LUA CODE:\n#{code}"
|
||||||
[==[
|
return 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
|
|
||||||
|
|
||||||
parse: (str)=>
|
parse: (str)=>
|
||||||
if @debug
|
if @debug
|
||||||
|
Loading…
Reference in New Issue
Block a user