[ObjCExport] Add translation of functions and properties extensions
KT-65630
This commit is contained in:
committed by
Space Team
parent
a34b87c63a
commit
30b63e4843
+18
@@ -0,0 +1,18 @@
|
||||
val topLevelPropA = 0
|
||||
val topLevelPropB = 1
|
||||
|
||||
val Foo.extensionValA
|
||||
get() = 0
|
||||
val Foo.extensionValB
|
||||
get() = 1
|
||||
|
||||
var Foo.extensionVarA
|
||||
get() = 0
|
||||
set(value) {}
|
||||
var Foo.extensionVarB
|
||||
get() = 1
|
||||
set(value) {}
|
||||
|
||||
class Foo {
|
||||
fun memberFun() {}
|
||||
}
|
||||
Reference in New Issue
Block a user