7333589663
Before this commit, we added Enum.entries only in case when LanguageFeature.EnumEntries was ON (with an exception in K1/Java case). In this commit we add Enum.entries unconditionally, and in case the language feature is OFF we filter them out during tower resolve.
23 lines
786 B
Plaintext
Vendored
23 lines
786 B
Plaintext
Vendored
public final enum class E : R|kotlin/Enum<test/E>| {
|
|
public final static fun valueOf(value: R|kotlin/String|): R|test/E| {
|
|
}
|
|
|
|
public final static fun values(): R|kotlin/Array<test/E>| {
|
|
}
|
|
|
|
public final static val entries: R|kotlin/enums/EnumEntries<test/E>|
|
|
public get(): R|kotlin/enums/EnumEntries<test/E>|
|
|
|
|
private constructor(): R|test/E|
|
|
|
|
public final static enum entry ONE: R|test/E|
|
|
public final static enum entry TWO: R|test/E|
|
|
public final static enum entry THREE: R|test/E|
|
|
public final static enum entry FOUR: R|test/E|
|
|
public final static enum entry FIVE: R|test/E|
|
|
public final static enum entry SIX: R|test/E|
|
|
public final static enum entry SEVEN: R|test/E|
|
|
public final static enum entry EIGHT: R|test/E|
|
|
}
|
|
|