PSI: Delete succeeding semicolon along with KtElement

#KT-5487 Fixed
This commit is contained in:
Alexey Sedunov
2015-12-11 19:03:06 +03:00
parent d0b9b6a3b4
commit ffb382e3bc
9 changed files with 73 additions and 1 deletions
+4
View File
@@ -0,0 +1,4 @@
fun f() {
val <caret>x = 5;
println(x + x)
}
+3
View File
@@ -0,0 +1,3 @@
fun f() {
println(5 + 5)
}
@@ -0,0 +1,4 @@
fun f() {
val <caret>x = 5 /**/ ;
println(x + x)
}
@@ -0,0 +1,3 @@
fun f() {
println(5 + 5)
}