Split if intention preserves comments

This commit is contained in:
Valentin Kipyatkov
2015-05-23 22:55:43 +03:00
parent 4a2f2b62ec
commit df0d27b8b2
13 changed files with 178 additions and 19 deletions
@@ -0,0 +1,9 @@
fun doSomething<T>(a: T) {}
fun foo(p: Int) {
<caret>if (0 < p /* > 0 */) {
if (p < 100 /* not too much */) {
doSomething("test")
}
}
}