Skip to content

Commit

Permalink
comment on lack of support for wildcard types
Browse files Browse the repository at this point in the history
  • Loading branch information
msridhar committed Oct 18, 2023
1 parent 5fcf5ac commit 5df3778
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1009,6 +1009,7 @@ private static final class PrettyTypeVisitor extends Types.DefaultTypeVisitor<St

@Override
public String visitWildcardType(Type.WildcardType t, Void unused) {
// NOTE: we have not tested this code yet as we do not yet support wildcard types
StringBuilder sb = new StringBuilder();
sb.append(t.kind);
if (t.kind != BoundKind.UNBOUND) {
Expand Down

0 comments on commit 5df3778

Please sign in to comment.