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
+3 -3
View File
@@ -4,11 +4,11 @@
package testData.libraries
[[public final enum class Color private constructor(rgb: kotlin.Int) : kotlin.Enum<testData.libraries.Color> {
[[RED]]
[[RED]],
[[GREEN]]
[[GREEN]],
[[BLUE]]
[[BLUE]];
[internal final val rgb: kotlin.Int /* compiled code */]
}]]