llvm-project/clang/unittests/Format
Daniel Jasper a5621202c4 clang-format: Prefer not to put lambdas on a single line.
Before:
  string abc =
      SomeFunction(aaaaaaaaaaaaa, aaaaa,
                   []() { SomeOtherFunctioooooooooooooooooooooooooon(); });

After:
  string abc = SomeFunction(aaaaaaaaaaaaa, aaaaa, []() {
    SomeOtherFunctioooooooooooooooooooooooooon();
  });

llvm-svn: 215197
2014-08-08 12:00:13 +00:00
..
CMakeLists.txt clang-format: Better support and testing for protocol buffers. 2014-01-19 09:04:08 +00:00
FormatTest.cpp clang-format: Prefer not to put lambdas on a single line. 2014-08-08 12:00:13 +00:00
FormatTestJS.cpp clang-format: [JS] support free-standing functions again. 2014-06-30 13:24:54 +00:00
FormatTestProto.cpp clang-format: [proto] Improve formatting of text-proto options. 2014-07-28 14:08:09 +00:00
FormatTestUtils.h Create a separate file for JS-specific unit tests. 2013-12-03 10:50:16 +00:00
Makefile Make clang's rewrite engine a core feature 2014-07-16 16:48:33 +00:00