Decompiler & stub builder fixed accordingly with new enum syntax.
Companion object now directly follows enum entries to avoid having them at the middle. Some decompiler & stub builder tests fixed accordingly.
This commit is contained in:
@@ -3,10 +3,22 @@
|
||||
|
||||
package test
|
||||
|
||||
public final enum class Enum private () : kotlin.Enum<test.Enum>, dependency.Tr {
|
||||
ONE
|
||||
internal final enum class Enum private () : kotlin.Enum<test.Enum> {
|
||||
A
|
||||
|
||||
TWO
|
||||
B
|
||||
|
||||
THREE
|
||||
C
|
||||
|
||||
D
|
||||
|
||||
E
|
||||
|
||||
F
|
||||
|
||||
internal companion object {
|
||||
internal final val c: kotlin.Int /* compiled code */
|
||||
}
|
||||
|
||||
internal open fun f(): kotlin.Int { /* compiled code */ }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user