Fixed caret position for KT-5906 Smart completion of anonymous object should preselect single method body

#KT-5906 Fixed
This commit is contained in:
Valentin Kipyatkov
2014-10-20 19:38:05 +04:00
parent 7f55c0626f
commit 3a2a7427e7
2 changed files with 3 additions and 1 deletions
@@ -1,6 +1,6 @@
var r : Runnable = object: Runnable {
override fun run() {
throw UnsupportedOperationException()
<caret><selection>throw UnsupportedOperationException()</selection>
}
}