llvm-project/clang/lib/Format
Daniel Jasper 94e11d02d8 clang-format: [JS] Support comments in dict literals.
Before:
  var stuff = {
    // comment for update
    update : false,
             // comment for update
    modules : false,
              // comment for update
    tasks : false
  };

After:
  var stuff = {
    // comment for update
    update : false,
    // comment for update
    modules : false,
    // comment for update
    tasks : false
  };

llvm-svn: 217157
2014-09-04 14:58:30 +00:00
..
BreakableToken.cpp clang-format: Fix bug introduced by r208392. 2014-05-09 13:11:16 +00:00
BreakableToken.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00
CMakeLists.txt [CMake] Use LINK_LIBS instead of target_link_libraries(). 2014-02-26 06:41:29 +00:00
ContinuationIndenter.cpp clang-format: Improve formatting of nested builder-type calls. 2014-08-25 08:48:17 +00:00
ContinuationIndenter.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00
Encoding.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00
Format.cpp clang-format: Add an option 'SpaceAfterCStyleCast'. 2014-09-03 07:37:29 +00:00
FormatToken.cpp clang-format: Format long lists in columns if without bin-packing. 2014-08-13 08:46:21 +00:00
FormatToken.h clang-format: Improve handling of block comments in braced lists. 2014-08-26 09:37:52 +00:00
Makefile
TokenAnnotator.cpp clang-format: [JS] Support comments in dict literals. 2014-09-04 14:58:30 +00:00
TokenAnnotator.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00
UnwrappedLineParser.cpp clang-format: Address review comments of r216501. 2014-08-27 17:16:46 +00:00
UnwrappedLineParser.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00
WhitespaceManager.cpp clang-format: Fix bug introduced by r208392. 2014-05-09 13:11:16 +00:00
WhitespaceManager.h Header guard canonicalization, clang part. 2014-08-13 16:25:19 +00:00