Skip to content

Commit

Permalink
todo: do not panic
Browse files Browse the repository at this point in the history
  • Loading branch information
ice1000 committed Jul 12, 2024
1 parent 6f6b9ed commit 309bc3f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ private void doSerialize(@NotNull TyckDef unit) {
case PrimDef primDef -> new PrimSerializer(this)
.serialize(primDef);
case ClassDef classDef -> {
throw new UnsupportedOperationException("ClassDef");
// throw new UnsupportedOperationException("ClassDef");
}
case MemberDef memberDef -> {
throw new UnsupportedOperationException("MemberDef");
// throw new UnsupportedOperationException("MemberDef");
}
}
}
Expand Down

0 comments on commit 309bc3f

Please sign in to comment.