[ObjCExport] Add translation of functions and properties extensions

KT-65630
This commit is contained in:
eugene.levenetc
2024-02-20 14:59:19 +01:00
committed by Space Team
parent a34b87c63a
commit 30b63e4843
13 changed files with 212 additions and 47 deletions
@@ -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() {}
}