introduce parameter: allow to introduce parameter from code block (IDEA-81166)

This commit is contained in:
Anna Kozlova
2014-12-10 16:05:56 +01:00
parent a23fdf8c97
commit dfc7e8cb61
10 changed files with 417 additions and 50 deletions
@@ -0,0 +1,12 @@
class Test {
void bar() {
foo(1);
}
void foo(int i) {
<selection>
System.out.println(i);
System.out.println(i);
</selection>
}
}