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() {