From 5722fe0825ed22dfcce8bf48d6ad3e05170f5596 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Wed, 11 Jan 2023 11:24:17 +0200 Subject: [PATCH] - Removed now undeeded debug --- source/tlang/compiler/parsing/core.d | 1 - 1 file changed, 1 deletion(-) diff --git a/source/tlang/compiler/parsing/core.d b/source/tlang/compiler/parsing/core.d index 2fde9325..91bb1fda 100644 --- a/source/tlang/compiler/parsing/core.d +++ b/source/tlang/compiler/parsing/core.d @@ -645,7 +645,6 @@ public final class Parser { /* Parse the class and add its statements */ statements ~= parseClass(); - gprintln("Ablo: "~getCurrentToken().toString()); } /* If it is a struct definition */ else if(symbol == SymbolType.STRUCT)