This is an archive of the discontinued LLVM Phabricator instance.

clang-format: [JS] space after parameter naming.
ClosedPublic

Authored by mprobst on Sep 26 2018, 1:14 AM.

Details

Summary

Previously:

foo(/*bar=*/baz);

Now:

foo(/*bar=*/ baz);

The run-in parameter naming comment is not intended in JS.

Diff Detail

Repository
rL LLVM

Event Timeline

mprobst created this revision.Sep 26 2018, 1:14 AM
mboehme accepted this revision.Sep 26 2018, 1:20 AM
This revision is now accepted and ready to land.Sep 26 2018, 1:20 AM
This revision was automatically updated to reflect the committed changes.
This revision was automatically updated to reflect the committed changes.