From e6d53864f71b53e150e1f914ff783d0c374d9f5a Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 15 Jan 2019 18:08:18 -0800 Subject: [PATCH] Removed debug code. --- code_obj.lua | 3 --- code_obj.moon | 2 -- nomsu_compiler.lua | 2 -- nomsu_compiler.moon | 2 -- 4 files changed, 9 deletions(-) diff --git a/code_obj.lua b/code_obj.lua index 05de45b..a09608f 100644 --- a/code_obj.lua +++ b/code_obj.lua @@ -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 diff --git a/code_obj.moon b/code_obj.moon index 3c0294a..9315264 100644 --- a/code_obj.moon +++ b/code_obj.moon @@ -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 diff --git a/nomsu_compiler.lua b/nomsu_compiler.lua index fee94f3..9c8c9ac 100644 --- a/nomsu_compiler.lua +++ b/nomsu_compiler.lua @@ -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(), "(") diff --git a/nomsu_compiler.moon b/nomsu_compiler.moon index fd7403f..f3530e9 100644 --- a/nomsu_compiler.moon +++ b/nomsu_compiler.moon @@ -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!,"(")