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