clang-format: [ObjC] Fix method expression detection.
authorDaniel Jasper <djasper@google.com>
Thu, 16 Oct 2014 08:38:51 +0000 (08:38 +0000)
committerDaniel Jasper <djasper@google.com>
Thu, 16 Oct 2014 08:38:51 +0000 (08:38 +0000)
commitea772b4df29c88ce44413b6935278b9eddc3ff5d
tree30e85df8039c79b077fa295a761f398d31367efc
parent9bc86593a26ff0168d2ddd0b6145c34555ed785a
clang-format: [ObjC] Fix method expression detection.

Before:
  return (a)[foo bar : baz];

After:
  return (a)[foo bar:baz];

llvm-svn: 219919
clang/lib/Format/TokenAnnotator.cpp
clang/unittests/Format/FormatTest.cpp