IDEA-25267 Smart Completion after continue&break should filter labels

This commit is contained in:
peter
2012-03-07 20:24:50 +04:00
parent 3a2ec64c13
commit 91fb524a30
7 changed files with 59 additions and 13 deletions
@@ -0,0 +1,8 @@
public class Util {
void foo(int labInt) {
label:
while (true) {
break label;<caret>
}
}
}
@@ -0,0 +1,8 @@
public class Util {
void foo(int labInt) {
label:
while (true) {
break l<caret>
}
}
}