IDEA-71518 let parameters completion pass method parameters

This commit is contained in:
peter
2011-09-28 19:28:38 +02:00
parent af050e5d2b
commit a48dd6e1de
7 changed files with 83 additions and 31 deletions
@@ -0,0 +1,9 @@
public class SomeClass {
Border createBorder(Color color, int top, boolean isOpaque, int bottom, int right, int left) {
new Insets(top, left, bottom, right)<caret>
}
}
class Insets {
Insets(int top, int left, int bottom, int right) {}
}
@@ -0,0 +1,9 @@
public class SomeClass {
Border createBorder(Color color, int top, boolean isOpaque, int bottom, int right, int left) {
new Insets(<caret>)
}
}
class Insets {
Insets(int top, int left, int bottom, int right) {}
}
@@ -10,6 +10,6 @@ class Foo {
public class Bar {
{
new Foo(Foo.FOO_BAR);<caret>
new Foo(Foo.FOO_BAR)<caret>
}
}