diff --git a/source/tlang/compiler/parsing/core.d b/source/tlang/compiler/parsing/core.d index 498396f..9b63af4 100644 --- a/source/tlang/compiler/parsing/core.d +++ b/source/tlang/compiler/parsing/core.d @@ -1359,15 +1359,6 @@ public final class Parser ArrayIndex arrayIndexExpr = new ArrayIndex(indexTo, index); addRetExp(arrayIndexExpr); } - /* TODO: For `🧠 Feature: Meta-programming engine` (testing replaceability) */ - else if(symbol == SymbolType.REPR) - { - import tlang.compiler.symbols.mcro : Repr; - - Repr repr = new Repr(); - addRetExp(repr); - nextToken(); - } /* If it is an identifier */ else if (symbol == SymbolType.IDENT_TYPE) {