8c95884ad2
Extract single point of entry for all change signature refactorings and fixes (remove parameter, add parameter) Change signature now affects overriding functions as well Ask the user whether he wants to refactor base function(s) or the selected one if appropiate Fix a problem with descriptorToDeclaration in JetChangeSignatureHandler Rename: JetFunctionPlatformDescriptor -> JetMethodDescriptor
11 lines
121 B
Kotlin
11 lines
121 B
Kotlin
class A {
|
|
fun f(param: Int)
|
|
}
|
|
|
|
trait B {
|
|
fun f(p: Int)
|
|
}
|
|
|
|
class C : A, B {
|
|
override fun <caret>f(p: Int) {}
|
|
} |