From 642f96db70e78488762e137a9138dd5febbef393 Mon Sep 17 00:00:00 2001 From: Graham Trott Date: Fri, 9 Oct 2020 16:03:23 +0100 Subject: [PATCH] Remove comment --- js/easycoder/Compile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/easycoder/Compile.js b/js/easycoder/Compile.js index 821e767..588f830 100644 --- a/js/easycoder/Compile.js +++ b/js/easycoder/Compile.js @@ -281,7 +281,7 @@ const EasyCoder_Compiler = { const pc = this.program.length; // First check for a label if (keyword.endsWith(`:`)) { - console.log(`Label: ${keyword}`); + // console.log(`Label: ${keyword}`); const name = keyword.substring(0, keyword.length - 1); if (this.symbols[name]) { throw new Error(`Duplicate symbol: '${name}'`);