From afcca54ea7921d7690e9256afba65a7e90b17c93 Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Wed, 17 Apr 2013 17:07:53 -0600 Subject: [PATCH] removed logs --- whalesong/js-assembler/runtime-src/runtime.js | 1 - whalesong/repl-prototype/htdocs/repl.js | 1 - 2 files changed, 2 deletions(-) diff --git a/whalesong/js-assembler/runtime-src/runtime.js b/whalesong/js-assembler/runtime-src/runtime.js index 809b37c..7526ab8 100644 --- a/whalesong/js-assembler/runtime-src/runtime.js +++ b/whalesong/js-assembler/runtime-src/runtime.js @@ -738,7 +738,6 @@ } } - console.log('evaluation terminated'); that.running = false; that.breakScheduled = false; release(); diff --git a/whalesong/repl-prototype/htdocs/repl.js b/whalesong/repl-prototype/htdocs/repl.js index 1d60cbd..2f23661 100644 --- a/whalesong/repl-prototype/htdocs/repl.js +++ b/whalesong/repl-prototype/htdocs/repl.js @@ -162,7 +162,6 @@ var compiledCodes = compiledResult.compiledCodes; forEachK(compiledCodes, function(code, k) { - console.log(code); // Indirect eval usage here is deliberate. var codeFunction = (0,eval)(code); var onGoodEvaluation = function() {