mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 20:39:40 +07:00
in-place change signature: avoid deadlock; avoid suggestions on new; highlight range in the box - hide highlighting on caret movement; dismiss current highlighting
This commit is contained in:
@@ -2,4 +2,5 @@ class Test {
|
||||
void foo(int i<caret>) {
|
||||
System.out.println(i);
|
||||
}
|
||||
void bar(){foo(1);}
|
||||
}
|
||||
@@ -2,4 +2,5 @@ class Test {
|
||||
void foo(int i, int param) {
|
||||
System.out.println(i);
|
||||
}
|
||||
void bar(){foo(1);}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
class Test {
|
||||
void myverylonagname(<caret>){}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package refactoring.changeSignatureGesture;
|
||||
interface I {
|
||||
void add(<caret>);
|
||||
}
|
||||
|
||||
public class IImpl implements I {
|
||||
public void add(){}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package refactoring.changeSignatureGesture;
|
||||
interface I {
|
||||
void add(int param);
|
||||
}
|
||||
|
||||
public class IImpl implements I {
|
||||
public void add(int param){}
|
||||
}
|
||||
@@ -2,4 +2,5 @@ class Test {
|
||||
void foo(int i<caret>) {
|
||||
System.out.println(i);
|
||||
}
|
||||
void bar(){foo();}
|
||||
}
|
||||
@@ -2,4 +2,5 @@ class Test {
|
||||
void foo(int iparam) {
|
||||
System.out.println(iparam);
|
||||
}
|
||||
void bar(){foo();}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
public class Test {
|
||||
void foo(<caret>){}
|
||||
void bar() {
|
||||
foo();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user