cleaned up

This commit is contained in:
Tristan B. Velloza Kildaire 2022-04-08 01:15:31 +02:00
parent b5c4ca44ee
commit 190f64c0e8
1 changed files with 5 additions and 4 deletions

View File

@ -512,11 +512,12 @@ public class DNodeGenerator
ExpressionDNode actualArgumentDNode = poolT!(ExpressionDNode, Expression)(actualArgument);
// dnode.needs(actualArgumentDNode);
gprintln("We need to add recursion here", DebugType.ERROR);
gprintln("Func?: "~to!(string)(cast(FunctionCall)actualArgument));
gprintln("Literal?: "~to!(string)(cast(NumberLiteral)actualArgument));
gprintln("Hello baba", DebugType.ERROR);
// gprintln("We need to add recursion here", DebugType.ERROR);
// gprintln("Func?: "~to!(string)(cast(FunctionCall)actualArgument));
// gprintln("Literal?: "~to!(string)(cast(NumberLiteral)actualArgument));
// gprintln("Hello baba", DebugType.ERROR);
/* TODO: Ensure the correct context */
dnode.needs(expressionPass(actualArgument, context));
}
}