This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG16212b8b3e4f: clang-format: [JS] support new assignment
operators. (authored by mprobst).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST
mprobst updated this revision to Diff 304069.
mprobst added a comment.
- fix comment
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D91132/new/
https://reviews.llvm.org/D91132
Files:
clang/lib/Format/FormatToken.h
clang/lib/Format/FormatTokenLex
mprobst created this revision.
mprobst added a reviewer: krasimir.
Herald added a project: clang.
mprobst requested review of this revision.
Before:
a && = b;
After:
a &&= b;
These operators are new additions in ES2021.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D911