[PATCH] D100752: clang-format: [JS] do not merge imports and exports.

2021-04-20 Thread Martin Probst via Phabricator via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rG3d4a6037ff46: clang-format: [JS] do not merge imports and exports. (authored by mprobst). Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D100752/new/ https://

[PATCH] D100752: clang-format: [JS] do not merge imports and exports.

2021-04-19 Thread Martin Probst via Phabricator via cfe-commits
mprobst created this revision. mprobst added a reviewer: krasimir. mprobst requested review of this revision. Herald added a project: clang. Previously, clang-format would erroneously merge import and export statements. These need to be kept separate, as the semantics differ. Repository: rG LL