From 81e828d7e7b2b76cfd863b4868203a299db69bfa Mon Sep 17 00:00:00 2001 From: danielyxie Date: Sat, 2 Jun 2018 22:10:24 -0500 Subject: [PATCH] Removed debug logging statement for ram parser AST --- dist/engine.bundle.js | 1 - dist/tests.bundle.js | 1 - src/Script.js | 1 - 3 files changed, 3 deletions(-) diff --git a/dist/engine.bundle.js b/dist/engine.bundle.js index 4a19c58e7..4af78711e 100644 --- a/dist/engine.bundle.js +++ b/dist/engine.bundle.js @@ -25626,7 +25626,6 @@ function parseOnlyRamCalculate(server, code, workerScript) { // onto the main reference map, and a list of modules that need to be parsed. function parseOnlyCalculateDeps(code, currentModule) { const ast = Object(_utils_acorn_js__WEBPACK_IMPORTED_MODULE_12__["parse"])(code, {sourceType:"module", ecmaVersion: 8}); - console.log(ast); // Everything from the global scope goes in ".". Everything else goes in ".function", where only // the outermost layer of functions counts. diff --git a/dist/tests.bundle.js b/dist/tests.bundle.js index f5fa65bfe..2fb124d92 100644 --- a/dist/tests.bundle.js +++ b/dist/tests.bundle.js @@ -25626,7 +25626,6 @@ function parseOnlyRamCalculate(server, code, workerScript) { // onto the main reference map, and a list of modules that need to be parsed. function parseOnlyCalculateDeps(code, currentModule) { const ast = Object(_utils_acorn_js__WEBPACK_IMPORTED_MODULE_12__["parse"])(code, {sourceType:"module", ecmaVersion: 8}); - console.log(ast); // Everything from the global scope goes in ".". Everything else goes in ".function", where only // the outermost layer of functions counts. diff --git a/src/Script.js b/src/Script.js index 4fe9d6c58..8b7b1ee7f 100644 --- a/src/Script.js +++ b/src/Script.js @@ -484,7 +484,6 @@ function parseOnlyRamCalculate(server, code, workerScript) { // onto the main reference map, and a list of modules that need to be parsed. function parseOnlyCalculateDeps(code, currentModule) { const ast = parse(code, {sourceType:"module", ecmaVersion: 8}); - console.log(ast); // Everything from the global scope goes in ".". Everything else goes in ".function", where only // the outermost layer of functions counts.