Closed
Description
Actual formatting:
$ ../llvm/build/bin/clang-format-bad -style='{AlignAfterOpenBracket: AlwaysBreak}' a.js
failedUserIds.push(
...subscriptioxxxxxxxxxxxxnSubset.map(
subscxxxxxxxxxxxxription => subscription.getUserId()));
failedUserIds.push(
!subscriptioxxxxxxxxxxxxnSubset.map(
subscxxxxxxxxxxxxription => subscription.getUserId()));
failedUserIds.push(
await subscriptioxxxxxxxxxxxxnSubset.map(
subscxxxxxxxxxxxxription => subscription.getUserId()));
Expected formatting:
failedUserIds.push(...subscriptioxxxxxxxxxxxxnSubset.map(
subscxxxxxxxxxxxxription => subscription.getUserId()));
failedUserIds.push(!subscriptioxxxxxxxxxxxxnSubset.map(
subscxxxxxxxxxxxxription => subscription.getUserId()));
failedUserIds.push(await subscriptioxxxxxxxxxxxxnSubset.map(
subscxxxxxxxxxxxxription => subscription.getUserId()));