From 781fe55b2802b58bd1909c0e7b3a4b845502b5e7 Mon Sep 17 00:00:00 2001 From: ShaMan123 Date: Mon, 31 Oct 2022 18:18:01 +0200 Subject: [PATCH] Update transform_files.mjs --- scripts/transform_files.mjs | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/transform_files.mjs b/scripts/transform_files.mjs index fedf7d36055..1360a23d02d 100644 --- a/scripts/transform_files.mjs +++ b/scripts/transform_files.mjs @@ -318,7 +318,6 @@ function transformClass(type, raw, options = {}) { const superTransforms = []; walk.simple(methodAST, { CallExpression(node) { - console.log(node); if ( node.callee.object?.type === 'ThisExpression' && node.callee.property?.name === 'callSuper' @@ -370,7 +369,6 @@ function transformClass(type, raw, options = {}) { }); staticMethods.forEach(({ key, value, comment }) => { - // console.log(printNode(comment)); classBody.push( (comment ? printNode(comment) : '') + '\n' +