This revision was automatically updated to reflect the committed changes.
Closed by commit rL343080: clang-format: [JS] space after parameter naming.
(authored by mprobst, committed by ).
Herald added a subscriber: llvm-commits.
Repository:
rL LLVM
https://reviews.llvm.org/D52535
Files:
cfe
This revision was automatically updated to reflect the committed changes.
Closed by commit rC343080: clang-format: [JS] space after parameter naming.
(authored by mprobst, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D52535?vs=167073&id=167077#toc
Repository:
rL LLVM
ht
mprobst created this revision.
mprobst added a reviewer: mboehme.
Previously:
foo(/*bar=*/baz);
Now:
foo(/*bar=*/ baz);
The run-in parameter naming comment is not intended in JS.
Repository:
rC Clang
https://reviews.llvm.org/D52535
Files:
lib/Format/TokenAnnotator.cpp
unittests/F