We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When running clang format on JavaScript sentences:
let myVar; myVar ||= 2;
clang-format transforms it to
let myVar; myVar || = 2;
It seems it doesn't understand the logical or assignemt from js https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_OR_assignment
The text was updated successfully, but these errors were encountered:
This was fixed in LLVM change 16212b8b3e4f, about a year ago.
I believe this change should be included in recent releases of clang-format - maybe you're on an old version?
Sorry, something went wrong.
Please reopen if you can repro with the latest version.
No branches or pull requests
When running clang format on JavaScript sentences:
let myVar;
myVar ||= 2;
clang-format transforms it to
let myVar;
myVar || = 2;
It seems it doesn't understand the logical or assignemt from js
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_OR_assignment
The text was updated successfully, but these errors were encountered: