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
@@ -1,6 +1,6 @@
package
public inline fun </*0*/ T, /*1*/ V> inlineFunWithInvoke(/*0*/ s: (T) -> V, /*1*/ ext: T.(T) -> V): kotlin.Unit
public inline fun </*0*/ T, /*1*/ V> inlineFunWithInvoke(/*0*/ s: (p: T) -> V, /*1*/ ext: T.(p: T) -> V): kotlin.Unit
public operator fun </*0*/ T, /*1*/ V> ((T) -> V).dec(): (T) -> V
public operator fun </*0*/ T, /*1*/ V> (T.(T) -> V).dec(): T.(T) -> V
public operator inline fun </*0*/ T, /*1*/ V> ((T) -> V).inc(): (T) -> V