- Removed reference to `SymbolType.REPR` and `Repr` which was used for testing the `MetaProcessor` in early stages
This commit is contained in:
Tristan B. Velloza Kildaire 2023-05-29 16:32:18 +02:00
parent e8aedea34a
commit 4fda952a7c
1 changed files with 0 additions and 9 deletions

View File

@ -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)
{