vscode-scala-syntax
vscode-scala-syntax copied to clipboard
String interpolated value extraction in val pattern
We are not highlighting the interpolated parts correctly in a val pattern.
val x"${x}b$y" = "abc"
"abc" match
case x"${x}b$y" =>

Expectation
Same highlighting as in case x"${x}b$y"