We are not highlighting the interpolated parts correctly in a val pattern. ```scala val x"${x}b$y" = "abc" "abc" match case x"${x}b$y" => ```  #### Expectation Same highlighting as in `case x"${x}b$y"`