From 68bbfc962ab42a563d67cd185cb849d44fb8c731 Mon Sep 17 00:00:00 2001 From: MathWizz Date: Sat, 2 Nov 2013 01:58:01 -0500 Subject: [PATCH] Removed debugger statement --- js/Interpreter.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/Interpreter.js b/js/Interpreter.js index 0d518e8..67478d5 100644 --- a/js/Interpreter.js +++ b/js/Interpreter.js @@ -149,7 +149,6 @@ Interpreter.prototype.stepActiveThread = function() { return; } else { b = this.activeThread.stack.pop(); - debugger; if (b.isLoop) { this.activeThread.nextBlock = b; // preserve where it left off return;