mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 10:51:25 +07:00
extract method: pre/post expressions checks fixed (IDEA-65476 )
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
class Test {
|
||||
String[] foo() {
|
||||
return null;
|
||||
}
|
||||
|
||||
boolean bar(String s) {
|
||||
return false;
|
||||
}
|
||||
|
||||
void foooooo() {
|
||||
String[] modules = foo();
|
||||
int i = 0;
|
||||
while (i < modules.length && <selection>!bar(modules[i])</selection>) {
|
||||
i++;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user