Skip to content

Commit

Permalink
adapt to changed grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
yanntm committed Jul 3, 2024
1 parent 0228563 commit cbe1f3d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ public Expression visitLtlNext(LtlNextContext ctx) {
@Override
public Expression visitLtlFutGen(LtlFutGenContext ctx) {
if (ctx.op == null) {
return ctx.left.accept(this);
return super.visitLtlFutGen(ctx);
} else {
Op op = readOp(ctx.op.getText());
return Expression.nop(op, ctx.left.accept(this));
Expand Down

0 comments on commit cbe1f3d

Please sign in to comment.