Use parameter names in DescriptorRenderer

This commit is contained in:
Valentin Kipyatkov
2016-09-13 12:31:53 +03:00
parent f335f32b48
commit 41ee06ec96
100 changed files with 239 additions and 223 deletions
@@ -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
}