Dependency

- Removed debug print as this is done
This commit is contained in:
Tristan B. Velloza Kildaire 2023-08-16 11:09:03 +02:00
parent a4c9a6cc27
commit 2ed7e9f490
1 changed files with 0 additions and 5 deletions

View File

@ -981,8 +981,6 @@ public class DNodeGenerator
*/
else if(cast(ArrayIndex)exp)
{
gprintln("Working on expressionPass'ing of ArrayIndex", DebugType.ERROR);
ArrayIndex arrayIndex = cast(ArrayIndex)exp;
// Set the context as we need to grab it later in the typechecker
@ -997,9 +995,6 @@ public class DNodeGenerator
Expression indexedExp = arrayIndex.getIndexed();
DNode indexedExpDNode = expressionPass(indexedExp, context);
dnode.needs(indexedExpDNode);
// assert(false);
}
else
{