KT-13047 Autocomplete inserts a fully-qualified variable name inside a String

KT-12083 String interpolation -- auto {} if there is a letter after cursor

 #KT-13047 Fixed
 #KT-12083 Fixed
This commit is contained in:
Valentin Kipyatkov
2016-09-12 19:06:58 +03:00
parent 6e02051be5
commit 5bf701ab03
15 changed files with 159 additions and 1 deletions
@@ -0,0 +1,14 @@
package p
object OOO {
val vvv = 1
}
class C {
fun foo() {
"$v<caret>"
}
}
// ELEMENT: vvv
// INVOCATION_COUNT: 2