mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
IDEA-71518 let parameters completion pass method parameters
This commit is contained in:
@@ -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) {}
|
||||
}
|
||||
+1
-1
@@ -10,6 +10,6 @@ class Foo {
|
||||
public class Bar {
|
||||
|
||||
{
|
||||
new Foo(Foo.FOO_BAR);<caret>
|
||||
new Foo(Foo.FOO_BAR)<caret>
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user