Change Signature: Support Change Signature quick-fix for Java -> Kotlin case

#KT-9401 Fixed
This commit is contained in:
Alexey Sedunov
2016-02-11 12:12:03 +03:00
parent 8761819117
commit d587bb2ea6
47 changed files with 390 additions and 22 deletions
@@ -0,0 +1,7 @@
// "Add 'int' as 1st parameter to method 'foo'" "true"
public class J {
void foo() {
new K().foo(<caret>1);
}
}