[Minor] Re-format :kotlin-klib-commonizer and :kotlin-klib-commonizer-api
This commit is contained in:
committed by
Space
parent
f893709e5b
commit
05a6d89151
Vendored
+16
-4
@@ -1,14 +1,26 @@
|
||||
expect class A1(text: String) { constructor(number: Int) }
|
||||
expect class A2(text: String) { constructor(number: Int) }
|
||||
expect class A1(text: String) {
|
||||
constructor(number: Int)
|
||||
}
|
||||
|
||||
expect class A2(text: String) {
|
||||
constructor(number: Int)
|
||||
}
|
||||
|
||||
expect class A3
|
||||
expect class A4
|
||||
expect class A5
|
||||
|
||||
expect class B1 protected constructor(text: String) { protected constructor(number: Int) }
|
||||
expect class B1 protected constructor(text: String) {
|
||||
protected constructor(number: Int)
|
||||
}
|
||||
|
||||
expect class B2
|
||||
expect class B3
|
||||
|
||||
expect class C1 internal constructor(text: String) { internal constructor(number: Int) }
|
||||
expect class C1 internal constructor(text: String) {
|
||||
internal constructor(number: Int)
|
||||
}
|
||||
|
||||
expect class C2
|
||||
|
||||
expect class D1
|
||||
|
||||
Vendored
+40
-11
@@ -1,17 +1,46 @@
|
||||
actual class A1 actual constructor(text: String) { actual constructor(number: Int) : this(number.toString()) }
|
||||
actual class A2 actual constructor(text: String) { actual constructor(number: Int) : this(number.toString()) }
|
||||
actual class A3(text: String) { constructor(number: Int) : this(number.toString()) }
|
||||
actual class A4(text: String) { constructor(number: Int) : this(number.toString()) }
|
||||
actual class A5(text: String) { constructor(number: Int) : this(number.toString()) }
|
||||
actual class A1 actual constructor(text: String) {
|
||||
actual constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
actual class B1 protected actual constructor(text: String) { protected actual constructor(number: Int) : this(number.toString()) }
|
||||
actual class B2 protected constructor(text: String) { protected constructor(number: Int) : this(number.toString()) }
|
||||
actual class B3 protected constructor(text: String) { protected constructor(number: Int) : this(number.toString()) }
|
||||
actual class A2 actual constructor(text: String) {
|
||||
actual constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
actual class C1 internal actual constructor(text: String) { internal actual constructor(number: Int) : this(number.toString()) }
|
||||
actual class C2 internal constructor(text: String) { internal constructor(number: Int) : this(number.toString()) }
|
||||
actual class A3(text: String) {
|
||||
constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
actual class D1 private constructor(text: String) { private constructor(number: Int) : this(number.toString()) }
|
||||
actual class A4(text: String) {
|
||||
constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
actual class A5(text: String) {
|
||||
constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
actual class B1 protected actual constructor(text: String) {
|
||||
protected actual constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
actual class B2 protected constructor(text: String) {
|
||||
protected constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
actual class B3 protected constructor(text: String) {
|
||||
protected constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
actual class C1 internal actual constructor(text: String) {
|
||||
internal actual constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
actual class C2 internal constructor(text: String) {
|
||||
internal constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
actual class D1 private constructor(text: String) {
|
||||
private constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
actual class E {
|
||||
constructor(a: Int)
|
||||
|
||||
Vendored
+40
-11
@@ -1,17 +1,46 @@
|
||||
actual class A1 actual constructor(text: String) { actual constructor(number: Int) : this(number.toString()) }
|
||||
actual class A2 actual constructor(text: String) { actual constructor(number: Int) : this(number.toString()) }
|
||||
actual class A3 protected constructor(text: String) { protected constructor(number: Int) : this(number.toString()) }
|
||||
actual class A4 internal constructor(text: String) { internal constructor(number: Int) : this(number.toString()) }
|
||||
actual class A5 private constructor(text: String) { private constructor(number: Int) : this(number.toString()) }
|
||||
actual class A1 actual constructor(text: String) {
|
||||
actual constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
actual class B1 protected actual constructor(text: String) { protected actual constructor(number: Int) : this(number.toString()) }
|
||||
actual class B2 internal constructor(text: String) { internal constructor(number: Int) : this(number.toString()) }
|
||||
actual class B3 private constructor(text: String) { private constructor(number: Int) : this(number.toString()) }
|
||||
actual class A2 actual constructor(text: String) {
|
||||
actual constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
actual class C1 internal actual constructor(text: String) { internal actual constructor(number: Int) : this(number.toString()) }
|
||||
actual class C2 private constructor(text: String) { private constructor(number: Int) : this(number.toString()) }
|
||||
actual class A3 protected constructor(text: String) {
|
||||
protected constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
actual class D1 private constructor(text: String) { private constructor(number: Int) : this(number.toString()) }
|
||||
actual class A4 internal constructor(text: String) {
|
||||
internal constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
actual class A5 private constructor(text: String) {
|
||||
private constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
actual class B1 protected actual constructor(text: String) {
|
||||
protected actual constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
actual class B2 internal constructor(text: String) {
|
||||
internal constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
actual class B3 private constructor(text: String) {
|
||||
private constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
actual class C1 internal actual constructor(text: String) {
|
||||
internal actual constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
actual class C2 private constructor(text: String) {
|
||||
private constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
actual class D1 private constructor(text: String) {
|
||||
private constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
actual class E {
|
||||
constructor(a: String)
|
||||
|
||||
Vendored
+40
-11
@@ -1,17 +1,46 @@
|
||||
class A1(text: String) { constructor(number: Int) : this(number.toString()) }
|
||||
class A2(text: String) { constructor(number: Int) : this(number.toString()) }
|
||||
class A3(text: String) { constructor(number: Int) : this(number.toString()) }
|
||||
class A4(text: String) { constructor(number: Int) : this(number.toString()) }
|
||||
class A5(text: String) { constructor(number: Int) : this(number.toString()) }
|
||||
class A1(text: String) {
|
||||
constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
class B1 protected constructor(text: String) { protected constructor(number: Int) : this(number.toString()) }
|
||||
class B2 protected constructor(text: String) { protected constructor(number: Int) : this(number.toString()) }
|
||||
class B3 protected constructor(text: String) { protected constructor(number: Int) : this(number.toString()) }
|
||||
class A2(text: String) {
|
||||
constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
class C1 internal constructor(text: String) { internal constructor(number: Int) : this(number.toString()) }
|
||||
class C2 internal constructor(text: String) { internal constructor(number: Int) : this(number.toString()) }
|
||||
class A3(text: String) {
|
||||
constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
class D1 private constructor(text: String) { private constructor(number: Int) : this(number.toString()) }
|
||||
class A4(text: String) {
|
||||
constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
class A5(text: String) {
|
||||
constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
class B1 protected constructor(text: String) {
|
||||
protected constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
class B2 protected constructor(text: String) {
|
||||
protected constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
class B3 protected constructor(text: String) {
|
||||
protected constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
class C1 internal constructor(text: String) {
|
||||
internal constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
class C2 internal constructor(text: String) {
|
||||
internal constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
class D1 private constructor(text: String) {
|
||||
private constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
class E {
|
||||
constructor(a: Int)
|
||||
|
||||
Vendored
+40
-11
@@ -1,17 +1,46 @@
|
||||
class A1(text: String) { constructor(number: Int) : this(number.toString()) }
|
||||
class A2 constructor(text: String) { constructor(number: Int) : this(number.toString()) }
|
||||
class A3 protected constructor(text: String) { protected constructor(number: Int) : this(number.toString()) }
|
||||
class A4 internal constructor(text: String) { internal constructor(number: Int) : this(number.toString()) }
|
||||
class A5 private constructor(text: String) { private constructor(number: Int) : this(number.toString()) }
|
||||
class A1(text: String) {
|
||||
constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
class B1 protected constructor(text: String) { protected constructor(number: Int) : this(number.toString()) }
|
||||
class B2 internal constructor(text: String) { internal constructor(number: Int) : this(number.toString()) }
|
||||
class B3 private constructor(text: String) { private constructor(number: Int) : this(number.toString()) }
|
||||
class A2 constructor(text: String) {
|
||||
constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
class C1 internal constructor(text: String) { internal constructor(number: Int) : this(number.toString()) }
|
||||
class C2 private constructor(text: String) { private constructor(number: Int) : this(number.toString()) }
|
||||
class A3 protected constructor(text: String) {
|
||||
protected constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
class D1 private constructor(text: String) { private constructor(number: Int) : this(number.toString()) }
|
||||
class A4 internal constructor(text: String) {
|
||||
internal constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
class A5 private constructor(text: String) {
|
||||
private constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
class B1 protected constructor(text: String) {
|
||||
protected constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
class B2 internal constructor(text: String) {
|
||||
internal constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
class B3 private constructor(text: String) {
|
||||
private constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
class C1 internal constructor(text: String) {
|
||||
internal constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
class C2 private constructor(text: String) {
|
||||
private constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
class D1 private constructor(text: String) {
|
||||
private constructor(number: Int) : this(number.toString())
|
||||
}
|
||||
|
||||
class E {
|
||||
constructor(a: String)
|
||||
|
||||
Reference in New Issue
Block a user