Skip to content

Commit

Permalink
Improve universe checker
Browse files Browse the repository at this point in the history
  • Loading branch information
valis committed Mar 18, 2024
1 parent d4657d1 commit 7b81857
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ public Boolean visitFieldCall(FieldCallExpression expr, Void params) {
return visitFieldCall(expr, 0);
}

@Override
public Boolean visitLam(LamExpression expression, Void param) {
return expression.getBody().accept(this, null);
}

@Override
public Boolean visitApp(AppExpression expression, Void param) {
int apps = 0;
Expand Down

0 comments on commit 7b81857

Please sign in to comment.