The PHP syntax highlighter seems to have a bug. It attempts to syntax highlight SQL code within PHP strings, but if there is a SQL comment on the last line of the string, the highlighter gets confused...
VSCode Version: 1.10.1
OS Version: Windows 10
Steps to Reproduce:
Create a php file.
Add the following code...
$sql = "SELECT value1
FROM table_name t
WHERE t.column1 = 3
--AND t.column2 = 'value';"
The PHP syntax highlighter seems to have a bug. It attempts to syntax highlight SQL code within PHP strings, but if there is a SQL comment on the last line of the string, the highlighter gets confused...
Steps to Reproduce: