llvm-project/clang/unittests/Format
Daniel Jasper 739ec534d2 clang-format: [JS] Understand object literals with only methods.
Before:
  let theObject = {someMethodName() {
    doTheThing();
    doTheOtherThing();
  },
                   someOtherMethodName() {
                     doSomething();
                     doSomethingElse();
                   }};

After:
  let theObject = {
    someMethodName() {
      doTheThing();
      doTheOtherThing();
    },
    someOtherMethodName() {
      doSomething();
      doSomethingElse();
    }
  };

llvm-svn: 234091
2015-04-04 07:56:55 +00:00
..
CMakeLists.txt Refactor libTooling to reduce required dependencies. 2014-10-29 18:55:09 +00:00
FormatTest.cpp clang-format: Force line break in trailing calls after multline exprs. 2015-03-26 18:46:28 +00:00
FormatTestJS.cpp clang-format: [JS] Understand object literals with only methods. 2015-04-04 07:56:55 +00:00
FormatTestJava.cpp clang-format: [Java] Support anonymous classes after = and return. 2015-03-12 14:44:29 +00:00
FormatTestProto.cpp clang-format: [Proto] No alternate operator names. 2015-04-03 21:15:46 +00:00
FormatTestUtils.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00
Makefile Refactor libTooling to reduce required dependencies. 2014-10-29 18:55:09 +00:00