add export from kotlin into swift of class content #KT-65896 fixed

Merge-request: KT-MR-14624
Merged-by: Artem Olkov <artem.olkov@jetbrains.com>
This commit is contained in:
Artem Olkov
2024-02-29 18:37:38 +00:00
committed by Space Team
parent 078f0ff6e1
commit e16714fcf9
18 changed files with 299 additions and 54 deletions
@@ -4,4 +4,11 @@ class NAMESPACED_CLASS
class Foo {
class INSIDE_CLASS // this should be ignored currently
fun foo(): Boolean = TODO()
val my_value: UInt = 5u
var my_variable: Long = 5
}
@@ -4,4 +4,11 @@ class NAMESPACED_CLASS
class Foo {
class INSIDE_CLASS // this should be ignored currently
fun foo(): Boolean = TODO()
val my_value: UInt = 5u
var my_variable: Long = 5
}
@@ -1,4 +1,11 @@
class Foo {
class INSIDE_CLASS // this should be ignored currently
fun foo(): Boolean = TODO()
val my_value: UInt = 5u
var my_variable: Long = 5
}