KT-18040: Enable auto popup when typing after $e. in string template
#KT-18040 fixed
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
class Bar {
|
||||
val aa = "Some"
|
||||
}
|
||||
|
||||
fun foo() {
|
||||
val bar = Bar()
|
||||
val y = "$bar.<caret>"
|
||||
}
|
||||
|
||||
// ELEMENT: aa
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
class Bar {
|
||||
val aa = "Some"
|
||||
}
|
||||
|
||||
fun foo() {
|
||||
val bar = Bar()
|
||||
val y = """$bar.
|
||||
a<caret>"""
|
||||
}
|
||||
|
||||
// NO_LOOKUP
|
||||
@@ -2,3 +2,4 @@ fun test() {
|
||||
"a<caret>"
|
||||
}
|
||||
|
||||
// NO_LOOKUP
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
class Bar {
|
||||
val aa = "Some"
|
||||
}
|
||||
|
||||
fun foo() {
|
||||
val bar = Bar()
|
||||
val y = "$bar. a<caret>"
|
||||
}
|
||||
|
||||
// NO_LOOKUP
|
||||
Reference in New Issue
Block a user