summaryrefslogtreecommitdiffstats
path: root/lib/AST/CommentParser.cpp
Commit message (Expand)AuthorAgeFilesLines
* Update the file headers across all of the LLVM projects in the monorepoChandler Carruth2019-01-191-4/+3
* Remove spurious assertion in -WdocumentationReid Kleckner2018-10-021-1/+0
* [cleanup] Remove excessive padding from TextTokenRetokenizer::PositionAlexander Shaposhnikov2016-09-201-1/+1
* [C++11] Use 'nullptr'. AST edition.Craig Topper2014-05-121-3/+3
* Comment parsing: fix a bug where a line with whitespace between two paragraphsDmitri Gribenko2013-08-231-0/+21
* Replace ArrayRef<T>() with None, now that we have an implicit ArrayRef constr...Dmitri Gribenko2013-05-051-3/+2
* Comment parsing: simplify code. As a side effect, this also silences GCC'sDmitri Gribenko2013-04-181-14/+10
* doc parsing. Add @method and @callback forFariborz Jahanian2013-03-051-2/+0
* doc parsing. We want to issue a strong warning whenFariborz Jahanian2013-03-051-0/+2
* Comment parsing: refactor handling of command markers in ASTDmitri Gribenko2013-03-041-3/+5
* Some refactoring in my patch on documentFariborz Jahanian2013-03-021-11/+13
* comment parsing. Keep the original command format Fariborz Jahanian2013-03-011-0/+4
* Comment parsing: use CharInfo.hDmitri Gribenko2013-02-091-5/+1
* Comment parsing: actually check for a block command after "\param x"Dmitri Gribenko2013-01-261-6/+23
* Fix PR14591: Windows newlines in doxygen comments cause failed assertion inDmitri Gribenko2012-12-191-2/+1
* Comment parsing: add a missing 'else'. Found by inspection.Dmitri Gribenko2012-12-191-1/+1
* Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth2012-12-041-2/+2
* Documentation parsing: propely handle a lone '\endverbatim' and emit a warning.Dmitri Gribenko2012-11-181-0/+8
* Comment parsing: handle non-builtin commands correctly. After semanticDmitri Gribenko2012-09-111-0/+7
* Comment AST: TableGen'ize all command lists in CommentCommandTraits.cpp.Dmitri Gribenko2012-09-101-29/+32
* Comment parsing: extract TableGen'able pieces into new CommandTraits class.Dmitri Gribenko2012-08-091-8/+11
* Comment parsing: fix crash on \tparam followed immediately by another blockDmitri Gribenko2012-08-061-1/+4
* Comment parser and sema: remove useless return valuesDmitri Gribenko2012-08-061-58/+63
* Comment parsing: add support for \tparam command on all levels.Dmitri Gribenko2012-07-311-9/+33
* Comment parser: don't crash on a completely empty \param followed by a blockDmitri Gribenko2012-07-301-2/+2
* Comment parsing: allow newlines between \param, direction specification (e.g.,Dmitri Gribenko2012-07-241-6/+28
* Comment parsing: couple TextTokenRetokenizer and comment parser together toDmitri Gribenko2012-07-241-50/+42
* Move TextTokenRetokenizer from CommentLexer.h to CommentParser.cpp since it isDmitri Gribenko2012-07-241-0/+203
* Comment parsing: retokenized text tokens are now pushed back in correct (notDmitri Gribenko2012-07-241-2/+5
* Fix PR13411: Comment parsing: failed assertion on unterminated verbatim block.Dmitri Gribenko2012-07-201-5/+10
* This fits into 80 columns without wrapping.Dmitri Gribenko2012-07-181-2/+1
* Comment parsing: repaint the bikesched: rename 'HTML open tags' to 'HTML star...Dmitri Gribenko2012-07-131-50/+50
* Enable comment parsing and semantic analysis to emit diagnostics. A fewDmitri Gribenko2012-07-111-24/+74
* Sprinkle llvm_unreachable around to placate GCC's -Wreturn-type.Matt Beaumont-Gay2012-07-061-2/+1
* Stop using new[] on llvm::BumpPtrAllocator.Dmitri Gribenko2012-07-061-1/+2
* CommentParser.cpp: remove unused variable.Dmitri Gribenko2012-07-061-1/+0
* Implement AST classes for comments, a real parser for Doxygen comments and aDmitri Gribenko2012-07-061-0/+414