Fixed 2 bugs in Join Lines

This commit is contained in:
Valentin Kipyatkov
2014-10-02 19:06:26 +04:00
parent 37e40267fe
commit 0823c1528a
6 changed files with 37 additions and 2 deletions
@@ -0,0 +1,5 @@
fun foo() {
<caret>val v: Int
v = 10
}
@@ -0,0 +1,4 @@
fun foo() {
val v: Int<caret>
v = 10
}
@@ -0,0 +1,5 @@
fun foo() {
<caret>val v: Int
// variable v
v = 10
}
@@ -0,0 +1,4 @@
fun foo() {
val v: Int<caret> // variable v
v = 10
}