[clang-format] Fix ObjC selectors with multiple params passed to macro
authorBen Hamilton <benhamilton@google.com>
Tue, 20 Mar 2018 14:53:25 +0000 (14:53 +0000)
committerBen Hamilton <benhamilton@google.com>
Tue, 20 Mar 2018 14:53:25 +0000 (14:53 +0000)
commitad991868c1c4d4e778f41ebccc1b4ad8ce978d31
treee5faa78d8597ac1e2caf8966aa9f1234e54013ea
parent63cc8e96c331b536eb59bc543b10cc4036e1c2a8
[clang-format] Fix ObjC selectors with multiple params passed to macro

Summary:
Objective-C selectors with arguments take the form of:

foo:
foo:bar:
foo:bar:baz:

These can be passed to a macro, like NS_SWIFT_NAME():

https://developer.apple.com/library/content/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html

and must never have spaces inserted around the colons.

Previously, there was logic in TokenAnnotator's tok::colon parser to
handle the single-argument case, but it failed for the
multiple-argument cases.

This diff fixes the bug and adds more tests.

Test Plan: New tests added. Ran tests with:
  % make -j12 FormatTests && ./tools/clang/unittests/Format/FormatTests

Reviewers: jolesiak, djasper, Wizard

Reviewed By: jolesiak, Wizard

Subscribers: klimek, cfe-commits

Differential Revision: https://reviews.llvm.org/D44638

llvm-svn: 327986
clang/lib/Format/TokenAnnotator.cpp
clang/unittests/Format/FormatTestObjC.cpp