"Invert if" - handling some more cases

This commit is contained in:
Valentin Kipyatkov
2015-05-13 09:50:02 +03:00
parent 279b406bca
commit d09c1e7c5b
4 changed files with 78 additions and 39 deletions
@@ -0,0 +1,6 @@
fun foo() {
for (i in 1..10)
<caret>if (i > 1) bar()
}
fun bar(){}