java: handle { after if/while statement condition and insert new block statement if needed

This commit is contained in:
Sergey Ignatov
2014-08-29 10:57:47 +04:00
parent def7e3707f
commit b3523f5240
6 changed files with 60 additions and 1 deletions
@@ -0,0 +1,7 @@
class C {
boolean f() {
while (f()) {
<caret>
}
}
}