KT-21770 Pasting into an interpolated string shouldn't escape $

This commit is contained in:
Toshiaki Kameyama
2017-12-15 11:24:30 +09:00
committed by Dmitry Jemerov
parent eb25ac44e6
commit a4fbe95112
5 changed files with 19 additions and 2 deletions
@@ -0,0 +1,3 @@
class Bar() {
val a = "begin This is $this end"
}
+3
View File
@@ -0,0 +1,3 @@
class Foo() {
val a = "<selection>This is $this</selection>"
}
+3
View File
@@ -0,0 +1,3 @@
class Bar() {
val a = "begin <caret> end"
}