Completion after $ in string literal works correctly for classes and objects

This commit is contained in:
Valentin Kipyatkov
2015-03-06 16:30:53 +03:00
parent de7b4dc681
commit 3e85b97e1a
6 changed files with 21 additions and 6 deletions
@@ -0,0 +1,3 @@
fun foo(): String {
val s = "$OOO<caret>"
}
@@ -0,0 +1,3 @@
package ppp
object OOOOO
@@ -0,0 +1,5 @@
import ppp.OOOOO
fun foo(): String {
val s = "${OOOOO<caret>}"
}