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.