Use parameter names in DescriptorRenderer
This commit is contained in:
@@ -2,7 +2,7 @@ package
|
||||
|
||||
package a {
|
||||
public fun test(): kotlin.Unit
|
||||
public inline fun </*0*/ T : a.Closeable, /*1*/ R> T.use(/*0*/ block: (T) -> R): R
|
||||
public inline fun </*0*/ T : a.Closeable, /*1*/ R> T.use(/*0*/ block: (t: T) -> R): R
|
||||
|
||||
public final class C : a.Closeable {
|
||||
public constructor C()
|
||||
|
||||
@@ -2,8 +2,8 @@ package
|
||||
|
||||
package aa {
|
||||
public fun test(): kotlin.Unit
|
||||
public fun aa.SomeTemplate.query(/*0*/ f: (kotlin.Int) -> kotlin.Unit): (kotlin.Int) -> kotlin.Unit
|
||||
public fun aa.SomeTemplate.query1(/*0*/ f: (kotlin.Int) -> kotlin.Unit): (kotlin.Int) -> kotlin.Unit
|
||||
public fun aa.SomeTemplate.query(/*0*/ f: (i: kotlin.Int) -> kotlin.Unit): (i: kotlin.Int) -> kotlin.Unit
|
||||
public fun aa.SomeTemplate.query1(/*0*/ f: (i: kotlin.Int) -> kotlin.Unit): (i: kotlin.Int) -> kotlin.Unit
|
||||
|
||||
public final class Some</*0*/ T> {
|
||||
public constructor Some</*0*/ T>()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package
|
||||
|
||||
package a {
|
||||
public fun </*0*/ T> fooT2(): (T) -> T
|
||||
public fun </*0*/ T> fooT2(): (t: T) -> T
|
||||
public fun test(): kotlin.Unit
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user