From e099ac514a38a9a2d365c01671d9c8654036162c Mon Sep 17 00:00:00 2001
From: yakomaxa <47655565+yakomaxa@users.noreply.github.com>
Date: Sun, 21 Aug 2022 10:19:56 +0900
Subject: [PATCH] Remove three comment-out console.log

---
 src/mol-script/transpilers/_spec/utils.ts | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/mol-script/transpilers/_spec/utils.ts b/src/mol-script/transpilers/_spec/utils.ts
index dbc417fe9..9e0d6b59d 100644
--- a/src/mol-script/transpilers/_spec/utils.ts
+++ b/src/mol-script/transpilers/_spec/utils.ts
@@ -15,7 +15,6 @@ export function testKeywords(keywords: KeywordDict, transpiler: Transpiler) {
             const k = keywords[name];
             if (k.map) {
                 const expr = transpiler(name);
-                //                compile(expr);
                 expect(expr).toEqual(k.map());
             } else {
                 const transpile = () => transpiler(name);
@@ -33,7 +32,6 @@ export function testProperties(properties: PropertyDict, transpiler: Transpiler)
             it(name, () => {
                 if (!p.isUnsupported) {
                     transpiler(example);
-                    //                  compile(expr);
                 } else {
                     const transpile = () => transpiler(example);
                     expect(transpile).toThrow();
@@ -55,7 +53,6 @@ export function testOperators(operators: OperatorList, transpiler: Transpiler) {
             it(o.name, () => {
                 if (!o.isUnsupported) {
                     transpiler(example);
-                    //                compile(expr);
                 } else {
                     const transpile = () => transpiler(example);
                     expect(transpile).toThrow();
-- 
GitLab