highlight continued/exiting statements on continue/break selection

IDEA-123328
This commit is contained in:
Anna Kozlova
2018-06-06 09:43:10 +03:00
parent bd0209bd69
commit 3cc9cdf88b
5 changed files with 93 additions and 0 deletions
@@ -0,0 +1,7 @@
class Main {
public static void main(String[] args) {
switch (args[0]) {
case "A" : br<caret>eak;
}
}
}