Skip to content

Commit

Permalink
Fix '(not) exists' building
Browse files Browse the repository at this point in the history
  • Loading branch information
m-dzianishchyts committed Feb 12, 2024
1 parent ef26c56 commit 4155851
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public ExpExists() {

public ExpExists(Exp subExp) {
this();
jjtAddChild((Node) subExp, 0);
setOperand(0, subExp);
}

/** Accept the visitor. **/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public ExpNotExists() {

public ExpNotExists(Exp subExp) {
this();
jjtAddChild((Node) subExp, 0);
setOperand(0, subExp);
}

/** Accept the visitor. **/
Expand Down

0 comments on commit 4155851

Please sign in to comment.