Generate navigateToDecompiledLibraryTest from the same test data as navigateToLibrarySourceTest

Change test data format
This commit is contained in:
Pavel V. Talanov
2016-03-18 19:38:36 +03:00
parent f74e8ee7f8
commit 68c0bb9dc2
45 changed files with 287 additions and 111 deletions
@@ -0,0 +1,14 @@
main.kt
public abstract class <1>ClassWithAbstractAndOpenMembers {
public abstract fun abstractFun()
public open fun openFun() {
}
public abstract val abstractVal : String
public open val openVal : String = ""
public open val openValWithGetter : String
get() {
return "239"
}
public abstract var <2><3>abstractVar : String