php-parser
php-parser copied to clipboard
Heredoc fails to parse escaped newlines
Source of this problem: https://github.com/prettier/plugin-php/issues/2015#issuecomment-1982167227
Unable to parse snippet like this:
<?php
if (true) {
echo <<<STR
\na
STR;
}