Rename Kotlin/Native modules for uniformity

This commit is contained in:
Dmitriy Dolovov
2020-01-29 15:55:56 +07:00
parent abd86107d1
commit 9594b8db42
218 changed files with 21 additions and 21 deletions
@@ -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() {}
@@ -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() {}