89779b5013
the first removes curly braces from a simple name variable, ${x} -> $x
and the second does the opposite $x -> ${x}
5 lines
97 B
Kotlin
5 lines
97 B
Kotlin
// IS_APPLICABLE: true
|
|
fun foo() {
|
|
val x = 4
|
|
val y = "something$<caret>x.somethingelse"
|
|
} |