mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
[java] value breaks: completion fixes (IDEA-196643)
This commit is contained in:
@@ -1,7 +0,0 @@
|
||||
public class Util {
|
||||
void foo(int a, int b) {
|
||||
Outer: for (int i = 0; i < 239; i++) {
|
||||
conti<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
public class Util {
|
||||
void foo(int a, int b) {
|
||||
Outer: for (int i = 0; i < 239; i++) {
|
||||
continue <caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
public class Util {
|
||||
void foo(int labInt) {
|
||||
label:
|
||||
while (true) {
|
||||
break label;<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
public class Util {
|
||||
void foo(int labInt) {
|
||||
label:
|
||||
while (true) {
|
||||
break l<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user