read properties from binary classes
(intermediate version)
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
class ClassFunGetFoo {
|
||||
fun getFoo() = 1
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package test
|
||||
|
||||
class ClassFunGetFoo {
|
||||
fun getFoo() = 1
|
||||
fun setFoo(p: Int) {}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
class ClassFunGetFoo {
|
||||
fun set(p: Int) { }
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
fun getFoo() = 1
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
abstract class ClassValAbstract {
|
||||
abstract val a: Int
|
||||
}
|
||||
Reference in New Issue
Block a user