highlight sibling continue/break (IDEA-117109)

This commit is contained in:
Anna Kozlova
2018-06-15 12:08:04 +03:00
parent da3832e331
commit b5a41bc285
3 changed files with 40 additions and 4 deletions
@@ -1,7 +1,13 @@
class Main {
public static void main(String[] args) {
do {
if (true) br<caret>eak;
} while (args != null);
lbl:
while (true) {
int i = 0;
do {
if (i++ > 7) br<caret>eak;
if (i % 2 == 0) continue;
if (--i > 8) continue lbl;
} while (args != null);
}
}
}