Skip to content

Commit

Permalink
Add Sealed and NonSealed flags
Browse files Browse the repository at this point in the history
Kotlin also has sealed types.
  • Loading branch information
knutwannheden committed Sep 6, 2023
1 parent 37a2296 commit 807dd69
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ public enum Flag {
Union(1L << 39),
Default(1L << 43),
SignaturePolymorphic(1L << 46),
PotentiallyAmbiguous(1L << 48);
PotentiallyAmbiguous(1L << 48),
Sealed(1L << 62),
NonSealed(1L << 63);

private final long bitMask;

Expand Down

0 comments on commit 807dd69

Please sign in to comment.