Rename Kotlin/Native modules for uniformity
This commit is contained in:
Vendored
+18
@@ -0,0 +1,18 @@
|
||||
expect suspend fun suspendFunction1(): Int
|
||||
|
||||
expect class Qux()
|
||||
|
||||
expect operator fun Qux.get(index: Int): String
|
||||
expect fun Qux.set(index: Int, value: String)
|
||||
|
||||
expect infix fun Qux.infixFunction1(another: Qux)
|
||||
expect fun Qux.infixFunction2(another: Qux)
|
||||
|
||||
expect tailrec fun tailrecFunction1()
|
||||
expect fun tailrecFunction2()
|
||||
|
||||
expect external fun externalFunction1()
|
||||
expect fun externalFunction2()
|
||||
|
||||
expect inline fun inlineFunction1() {}
|
||||
expect fun inlineFunction2() {}
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
actual suspend fun suspendFunction1() = 1
|
||||
suspend fun suspendFunction2() = 1
|
||||
|
||||
actual class Qux actual constructor()
|
||||
|
||||
actual operator fun Qux.get(index: Int) = "$index"
|
||||
actual operator fun Qux.set(index: Int, value: String) = Unit
|
||||
|
||||
actual infix fun Qux.infixFunction1(another: Qux) {}
|
||||
actual infix fun Qux.infixFunction2(another: Qux) {}
|
||||
|
||||
actual tailrec fun tailrecFunction1() {}
|
||||
actual tailrec fun tailrecFunction2() {}
|
||||
|
||||
actual external fun externalFunction1()
|
||||
actual external fun externalFunction2()
|
||||
|
||||
actual inline fun inlineFunction1() {}
|
||||
actual inline fun inlineFunction2() {}
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
actual suspend fun suspendFunction1() = 1
|
||||
fun suspendFunction2() = 1
|
||||
|
||||
actual class Qux actual constructor()
|
||||
|
||||
actual operator fun Qux.get(index: Int) = "$index"
|
||||
actual fun Qux.set(index: Int, value: String) = Unit
|
||||
|
||||
actual infix fun Qux.infixFunction1(another: Qux) {}
|
||||
actual fun Qux.infixFunction2(another: Qux) {}
|
||||
|
||||
actual tailrec fun tailrecFunction1() {}
|
||||
actual fun tailrecFunction2() {}
|
||||
|
||||
actual external fun externalFunction1()
|
||||
actual fun externalFunction2() {}
|
||||
|
||||
actual inline fun inlineFunction1() {}
|
||||
actual fun inlineFunction2() {}
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
suspend fun suspendFunction1() = 1
|
||||
suspend fun suspendFunction2() = 1
|
||||
|
||||
class Qux
|
||||
|
||||
operator fun Qux.get(index: Int) = "$index"
|
||||
operator fun Qux.set(index: Int, value: String) = Unit
|
||||
|
||||
infix fun Qux.infixFunction1(another: Qux) {}
|
||||
infix fun Qux.infixFunction2(another: Qux) {}
|
||||
|
||||
tailrec fun tailrecFunction1() {}
|
||||
tailrec fun tailrecFunction2() {}
|
||||
|
||||
external fun externalFunction1()
|
||||
external fun externalFunction2()
|
||||
|
||||
inline fun inlineFunction1() {}
|
||||
inline fun inlineFunction2() {}
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
suspend fun suspendFunction1() = 1
|
||||
fun suspendFunction2() = 1
|
||||
|
||||
class Qux
|
||||
|
||||
operator fun Qux.get(index: Int) = "$index"
|
||||
fun Qux.set(index: Int, value: String) = Unit
|
||||
|
||||
infix fun Qux.infixFunction1(another: Qux) {}
|
||||
fun Qux.infixFunction2(another: Qux) {}
|
||||
|
||||
tailrec fun tailrecFunction1() {}
|
||||
fun tailrecFunction2() {}
|
||||
|
||||
external fun externalFunction1()
|
||||
fun externalFunction2() {}
|
||||
|
||||
inline fun inlineFunction1() {}
|
||||
fun inlineFunction2() {}
|
||||
Reference in New Issue
Block a user