Various fixes to clang-format's macro handling.
Some of this is still pretty rough (note the load of FIXMEs), but it is strictly an improvement and fixes various bugs that were related to macro processing but are also imporant in non-macro use cases. Specific fixes: - correctly puts espaced newlines at the end of the line - fixes counting of white space before a token when escaped newlines are present - fixes parsing of "trailing" tokens when eof() is hit - puts macro parsing orthogonal to parsing other structure - general support for parsing of macro definitions Due to the fix to format trailing tokens, this change also includes a bunch of fixes to the c-index tests. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@171556 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- lib/Format/Format.cpp 44 additions, 15 deletionslib/Format/Format.cpp
- lib/Format/UnwrappedLineParser.cpp 99 additions, 14 deletionslib/Format/UnwrappedLineParser.cpp
- lib/Format/UnwrappedLineParser.h 5 additions, 1 deletionlib/Format/UnwrappedLineParser.h
- test/Index/comment-c-decls.c 1 addition, 1 deletiontest/Index/comment-c-decls.c
- test/Index/comment-objc-decls.m 4 additions, 4 deletionstest/Index/comment-objc-decls.m
- test/Index/comment-to-html-xml-conversion.cpp 5 additions, 5 deletionstest/Index/comment-to-html-xml-conversion.cpp
- test/Index/format-comment-cdecls.c 1 addition, 1 deletiontest/Index/format-comment-cdecls.c
- test/Index/overriding-ftemplate-comments.cpp 8 additions, 8 deletionstest/Index/overriding-ftemplate-comments.cpp
- unittests/Format/FormatTest.cpp 65 additions, 22 deletionsunittests/Format/FormatTest.cpp
Loading
Please register or sign in to comment