llvm-project/clang/unittests/Format
Daniel Jasper 1a31bab301 clang-format: Fix behavior with comments before conditional expressions
Before:
  SomeFunction(aaaaaaaaaaaaaaaaa,
               // comment.
                   ccccccccccccccccc ? aaaaaaaaaaaaaaaaaaaa
                                     : bbbbbbbbbbbbbbbbbbbb);

After:
  SomeFunction(aaaaaaaaaaaaaaaaa,
               // comment.
               ccccccccccccccccc ? aaaaaaaaaaaaaaaaaaaa : bbbbbbbbbbbbbbbbbbbb);

llvm-svn: 219921
2014-10-16 09:10:11 +00:00
..
CMakeLists.txt clang-format: Basic support for Java. 2014-09-15 11:21:46 +00:00
FormatTest.cpp clang-format: Fix behavior with comments before conditional expressions 2014-10-16 09:10:11 +00:00
FormatTestJS.cpp clang-format: [JS] Support AllowShortFunctionsOnASingleLine. 2014-09-30 17:57:06 +00:00
FormatTestJava.cpp clang-format: Basic support for Java. 2014-09-15 11:21:46 +00:00
FormatTestProto.cpp clang-format: [proto] Understand text-format nesting without : 2014-08-15 05:00:35 +00:00
FormatTestUtils.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00
Makefile Make clang's rewrite engine a core feature 2014-07-16 16:48:33 +00:00