Removed debug code.
This commit is contained in:
parent
5c96748802
commit
e6d53864f7
@ -163,9 +163,6 @@ do
|
||||
repeat
|
||||
local b = select(i, ...)
|
||||
assert(b, "code bit is nil")
|
||||
if b.Dict then
|
||||
require('ldt').breakpoint()
|
||||
end
|
||||
assert(not Source:is_instance(b), "code bit is a Source")
|
||||
if b == '' then
|
||||
_continue_0 = true
|
||||
|
@ -98,8 +98,6 @@ class Code
|
||||
for i=1,n
|
||||
b = select(i, ...)
|
||||
assert(b, "code bit is nil")
|
||||
if b.Dict
|
||||
require('ldt').breakpoint()
|
||||
assert(not Source\is_instance(b), "code bit is a Source")
|
||||
if b == '' then continue
|
||||
bits[#bits+1] = b
|
||||
|
@ -97,8 +97,6 @@ compile = function(self, tree)
|
||||
if ret ~= tree then
|
||||
return self:compile(ret)
|
||||
end
|
||||
elseif tree.stub == "1 if 2 else" then
|
||||
require('ldt').breakpoint()
|
||||
end
|
||||
local lua = LuaCode:from(tree.source)
|
||||
lua:add((stub):as_lua_id(), "(")
|
||||
|
@ -68,8 +68,6 @@ compile = (tree)=>
|
||||
return ret
|
||||
if ret != tree
|
||||
return @compile(ret)
|
||||
elseif tree.stub == "1 if 2 else"
|
||||
require('ldt').breakpoint!
|
||||
|
||||
lua = LuaCode\from(tree.source)
|
||||
lua\add((stub)\as_lua_id!,"(")
|
||||
|
Loading…
Reference in New Issue
Block a user