Implemented "Change signature" refactoring

This commit is contained in:
Alexander Kirillin
2013-04-25 20:45:35 +04:00
parent 500a165191
commit 0a597e563a
62 changed files with 2671 additions and 45 deletions
@@ -0,0 +1,10 @@
public fun foo(_x1: Int = 1, _x2: Float?, _x3: ((Int) -> Int)?) {
foo(2, 3.5, null);
val y1 = _x1;
val y2 = _x2;
val y3 = _x3;
}
fun bar() {
foo(_x1 = 2, _x2 = 3.5, _x3 = null);
}