[Minor] Re-format :kotlin-klib-commonizer and :kotlin-klib-commonizer-api
This commit is contained in:
committed by
Space
parent
f893709e5b
commit
05a6d89151
Vendored
+11
-3
@@ -1,5 +1,10 @@
|
||||
expect annotation class CommonAnnotationForAnnotationClassesOnly(text: String) { val text: String }
|
||||
expect annotation class CommonAnnotation(text: String) { val text: String }
|
||||
expect annotation class CommonAnnotationForAnnotationClassesOnly(text: String) {
|
||||
val text: String
|
||||
}
|
||||
|
||||
expect annotation class CommonAnnotation(text: String) {
|
||||
val text: String
|
||||
}
|
||||
|
||||
expect var propertyWithoutBackingField: Double
|
||||
expect val propertyWithBackingField: Double
|
||||
@@ -9,6 +14,9 @@ expect val <T : CharSequence> T.propertyWithExtensionReceiver: Int
|
||||
expect fun function1(text: String): String
|
||||
expect fun <Q : Number> Q.function2(): Q
|
||||
|
||||
expect class AnnotatedClass(value: String) { val value: String }
|
||||
expect class AnnotatedClass(value: String) {
|
||||
val value: String
|
||||
}
|
||||
typealias AnnotatedLiftedUpTypeAlias = AnnotatedClass
|
||||
|
||||
expect class AnnotatedNonLiftedUpTypeAlias
|
||||
|
||||
Reference in New Issue
Block a user