Add surround with if /else

This commit is contained in:
Natalia.Ukhorskaya
2013-02-11 18:59:04 +04:00
parent 1786c2c256
commit 2499bb79ca
17 changed files with 265 additions and 58 deletions
@@ -0,0 +1,7 @@
fun foo() {
val a: String? = null
<selection>if (a != null) {
a.length()
}</selection>
}