Improved sorting members in DecompiledDataFactory.

This commit is contained in:
Evgeny Gerashchenko
2012-03-23 19:46:56 +04:00
parent 62f4244e5a
commit 79a8c4ae9b
3 changed files with 62 additions and 6 deletions
@@ -4,14 +4,10 @@
package testData.libraries
[abstract class ClassWithAbstractAndOpenMembers {
[abstract fun abstractFun() : Unit]
[abstract val abstractVal : jet.String]
[abstract var abstractVar : jet.String]
[open fun openFun() : Unit { /* compiled code */ }]
[open val openVal : jet.String] /* compiled code */
[open val openValWithGetter : jet.String] /* compiled code */
@@ -19,4 +15,8 @@ package testData.libraries
[open var openVar : jet.String] /* compiled code */
[open var openVarWithGetter : jet.String] /* compiled code */
[abstract fun abstractFun() : Unit]
[open fun openFun() : Unit { /* compiled code */ }]
}]