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,33 @@
const val constProperty1 = 42
const val constProperty2 = 42
val delegatedProperty1: Int by lazy { 42 }
val delegatedProperty2: Int by lazy { 42 }
val delegatedProperty3: Int by mapOf("delegatedProperty3" to 42)
val delegatedProperty4: Int by mapOf("delegatedProperty4" to 42)
lateinit var lateinitProperty1: String
lateinit var lateinitProperty2: String
inline val inlineProperty1 get() = 42
inline val inlineProperty2 get() = 42
inline val inlineProperty3 get() = 42
inline var inlineProperty4
get() = 42
set(value) = Unit
inline var inlineProperty5
get() = 42
set(value) = Unit
inline var inlineProperty6
get() = 42
set(value) = Unit
inline var inlineProperty7
get() = 42
set(value) = Unit
inline var inlineProperty8
get() = 42
set(value) = Unit
external val externalProperty1: Int
external val externalProperty2: Int