We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3bee27 commit 515ddf5Copy full SHA for 515ddf5
1 file changed
liquidjava-verifier/src/main/java/liquidjava/rj_language/visitors/CreateASTVisitor.java
@@ -160,11 +160,7 @@ else if (rc instanceof VarContext) {
160
} else if (rc instanceof TargetInvocationContext) {
161
// TODO Finish Invocation with Target (a.len())
162
return null;
163
- }
164
- // else {
165
- // return create(((InvocationContext) rc).functionCall());
166
- // }
167
- else if (rc instanceof ResultContext) {
+ } else if (rc instanceof ResultContext) {
168
return new Var("$result");
169
} else if (rc instanceof InvocationContext) {
170
return create(((InvocationContext) rc).functionCall());
0 commit comments