Skip to content

Commit 515ddf5

Browse files
author
RajShivu
committed
Remove commented-out code from CreateASTVisitor
1 parent a3bee27 commit 515ddf5

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

liquidjava-verifier/src/main/java/liquidjava/rj_language/visitors/CreateASTVisitor.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -160,11 +160,7 @@ else if (rc instanceof VarContext) {
160160
} else if (rc instanceof TargetInvocationContext) {
161161
// TODO Finish Invocation with Target (a.len())
162162
return null;
163-
}
164-
// else {
165-
// return create(((InvocationContext) rc).functionCall());
166-
// }
167-
else if (rc instanceof ResultContext) {
163+
} else if (rc instanceof ResultContext) {
168164
return new Var("$result");
169165
} else if (rc instanceof InvocationContext) {
170166
return create(((InvocationContext) rc).functionCall());

0 commit comments

Comments
 (0)