Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Syntax Highlighting] Heredoc and nowdoc blocks don't end when it is a wrapped argument #138

Open
lexidor opened this issue Aug 1, 2022 · 0 comments
Labels

Comments

@lexidor
Copy link
Contributor

lexidor commented Aug 1, 2022

This issue was not recently introduced. Hackfmt changed its preferred way of formatting this code. The new style breaks the syntax highlighter, as it seems to miss the end Heredoc token. The current Github highlighting matches the broken behavior.

function _(): void {
  $x = Str\format(<<<END
END
);
  $y = '';
  Cls::someMethod();
}
function _(): void {
  $x = Str\format(
    <<<END
END
);
  $y = '';
  Cls::someMethod();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants