Skip to content
Prev Previous commit
Next Next commit
Remove commented-out code from CreateASTVisitor
  • Loading branch information
RajShivu committed Feb 13, 2026
commit 515ddf5e9972b3dd56df37913c524a5ec93243d0
Comment thread
rajshivu marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -160,11 +160,7 @@ else if (rc instanceof VarContext) {
} else if (rc instanceof TargetInvocationContext) {
// TODO Finish Invocation with Target (a.len())
return null;
}
// else {
// return create(((InvocationContext) rc).functionCall());
// }
else if (rc instanceof ResultContext) {
} else if (rc instanceof ResultContext) {
return new Var("$result");
} else if (rc instanceof InvocationContext) {
return create(((InvocationContext) rc).functionCall());
Expand Down