This is an archive of the discontinued LLVM Phabricator instance.

clang-format: [JS] support new assignment operators.
ClosedPublic

Authored by mprobst on Nov 10 2020, 12:18 AM.

Details

Summary

Before:

a && = b;

After:

a &&= b;

These operators are new additions in ES2021.

Diff Detail

Event Timeline

mprobst created this revision.Nov 10 2020, 12:18 AM
Herald added a project: Restricted Project. · View Herald TranscriptNov 10 2020, 12:18 AM
mprobst requested review of this revision.Nov 10 2020, 12:18 AM
krasimir accepted this revision.Nov 10 2020, 12:21 AM
This revision is now accepted and ready to land.Nov 10 2020, 12:21 AM
mprobst updated this revision to Diff 304069.Nov 10 2020, 12:22 AM
  • fix comment
This revision was landed with ongoing or failed builds.Nov 10 2020, 12:27 AM
This revision was automatically updated to reflect the committed changes.