Decompiler fix: enum entries are now separated by , and have ; at the end, relevant tests fixed

This commit is contained in:
Mikhail Glukhikh
2015-08-05 19:27:59 +03:00
parent 15d69499d0
commit 3793d99b00
3 changed files with 23 additions and 18 deletions
+6 -6
View File
@@ -4,17 +4,17 @@
package test
internal final enum class Enum private constructor() : kotlin.Enum<test.Enum> {
A
A,
B
B,
C
C,
D
D,
E
E,
F
F;
public companion object {
internal final val c: kotlin.Int /* compiled code */