Skip to content

Commit

Permalink
Fix accept method in RangeTypeNode.
Browse files Browse the repository at this point in the history
  • Loading branch information
baldimir committed Oct 11, 2024
1 parent 93d10d5 commit 0b7b528
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ public Type evaluate(EvaluationContext ctx) {
return new GenRangeType(gen);
}

@Override
public <T> T accept(Visitor<T> v) {
return v.visit(this);
}

public TypeNode getGenTypeNode() {
return genTypeNode;
}
Expand Down

0 comments on commit 0b7b528

Please sign in to comment.