Change Signature: Support configurable Change Signature for Java code

#KT-5923 Fixed
This commit is contained in:
Alexey Sedunov
2015-06-26 17:17:30 +03:00
parent 9e82411e78
commit 5319e9e761
14 changed files with 290 additions and 79 deletions
@@ -0,0 +1,14 @@
class Foo {
static void foo(int n) {
}
}
class Test {
static void test() {
Foo.foo();
Foo.foo(1);
Foo.foo(1);
Foo.foo(3);
}
}