-
Notifications
You must be signed in to change notification settings - Fork 1.1k
fix #9873: no longer use scala.Enum as parents of enums #9877
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
bishabosha
wants to merge
14
commits into
scala:master
from
dotty-staging:topic/enum-remove-scala-enum
Closed
Changes from 12 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
8392705
fix #9873: deprecate scala.Enum, no longer use it as parent of enums
bishabosha 913d831
fix tests
bishabosha 4e91dbe
error on custom definition of enum getters
bishabosha 2351587
add enumLabel to Mirror.Sum
bishabosha 489a1af
gen ordinal and enumLabel more lazily
bishabosha 5a75bab
adjust message for error
bishabosha 5a46667
only ordinal method is optional
bishabosha faa69ac
remove special case error
bishabosha 96a8af9
revert add enumLabel to Mirror
bishabosha 4d04804
use classSymbol
bishabosha 7adfa3f
adjust comment
bishabosha 4e3d6e4
Remove untpd.EnumGetters
bishabosha be11253
delay enter ordinal symbol
bishabosha 4951a75
refactor synthetic flag for ordinal + enumlabel
bishabosha File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 0 additions & 36 deletions
36
library/src-non-bootstrapped/scala/runtime/EnumValueSerializationProxy.java
This file was deleted.
Oops, something went wrong.
21 changes: 0 additions & 21 deletions
21
library/src-non-bootstrapped/scala/runtime/EnumValues.scala
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
trait Mixin { def enumLabel: String = "mixin" } | ||
|
||
enum Mixed extends Mixin { | ||
case B // error: overriding method enumLabel in trait Mixin of type => String; | ||
} | ||
|
||
enum MixedAlso { | ||
case C extends MixedAlso with Mixin // error: overriding method enumLabel in trait Mixin of type => String; | ||
} | ||
|
||
trait HasEnumLabel { def enumLabel: String } | ||
|
||
enum MyEnum extends HasEnumLabel { | ||
case D // ok | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
enum Labelled { | ||
|
||
case A | ||
|
||
def enumLabel: String = "nolabel" // error: double definition of method enumLabel: => String | ||
|
||
} | ||
|
||
enum Ordinalled { | ||
|
||
case A | ||
|
||
def ordinal: Int = -1 // error: double definition of method ordinal: => Int | ||
|
||
} |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,4 +22,4 @@ object runtime { | |
} | ||
def values: Iterable[E] = myMap.values | ||
} | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.