[java] value breaks: completion fixes (IDEA-196643)

This commit is contained in:
Roman Shevchenko
2018-11-21 18:30:44 +01:00
parent 637c4edb6d
commit a6338c60ec
11 changed files with 116 additions and 91 deletions
@@ -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>
}
}
}