Expand selection for class members #KT-28289 Fixed

This commit is contained in:
Toshiaki Kameyama
2018-11-22 11:54:36 +09:00
committed by Alexander Podkhalyuzin
parent 736818dfa7
commit 7bf51f1533
35 changed files with 449 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
class C {
constructor()
<caret>init {
}
fun foo() {
}
// comment
val bar = 1
}
+13
View File
@@ -0,0 +1,13 @@
class C {
constructor()
<selection><caret>init</selection> {
}
fun foo() {
}
// comment
val bar = 1
}
+13
View File
@@ -0,0 +1,13 @@
class C {
constructor()
<selection> <caret>init {
}
</selection>
fun foo() {
}
// comment
val bar = 1
}
+13
View File
@@ -0,0 +1,13 @@
class C {
<selection> constructor()
<caret>init {
}
fun foo() {
}
// comment
val bar = 1
</selection>}
+13
View File
@@ -0,0 +1,13 @@
class C {
<selection>
constructor()
<caret>init {
}
fun foo() {
}
// comment
val bar = 1
</selection>}
+13
View File
@@ -0,0 +1,13 @@
class C <selection>{
constructor()
<caret>init {
}
fun foo() {
}
// comment
val bar = 1
}</selection>