Files
kotlin-fork/idea/testData/refactoring/changeSignature/PreferContainedInClassBefore.kt
T
Pavel V. Talanov 8c95884ad2 Add new functionality to "Change signature" refactoring
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
2013-11-12 14:15:46 +04:00

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) {}
}