Support hasStableParameterNames in KotlinSignature and propagation

#KT-1924 In Progress
 #KT-2830 Fixed
This commit is contained in:
Alexander Udalov
2014-03-19 05:54:00 +04:00
parent 7fcd42f40c
commit 5fa1774cc1
90 changed files with 369 additions and 186 deletions
@@ -1,7 +1,7 @@
package test
public open class RedundantProjectionKind : Object() {
public open fun foo(p0: List<Number>) {
public open fun foo(list: List<Number>) {
throw UnsupportedOperationException()
}
}
@@ -2,5 +2,5 @@ package test
public open class RedundantProjectionKind : java.lang.Object {
public constructor RedundantProjectionKind()
public open fun foo(/*0*/ p0: kotlin.List<kotlin.Number>): kotlin.Unit
public open fun foo(/*0*/ list: kotlin.List<kotlin.Number>): kotlin.Unit
}