aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/AST/CommentParser.cpp
AgeCommit message (Expand)AuthorFilesLines
2023-01-09Move from llvm::makeArrayRef to ArrayRef deduction guides - clang/ partserge-sans-paille1-16/+11
2022-12-03[AST] Use std::nullopt instead of None (NFC)Kazu Hirata1-2/+2
2022-05-14Resolve overload ambiguity on Mac OS when printing size_t in diagnosticsAaron Puchert1-1/+1
2022-05-13Try to disambiguate between overloads on MacAaron Puchert1-1/+1
2022-05-13Comment parsing: Allow inline commands to have 0 or more than 1 argumentAaron Puchert1-29/+18
2019-08-05Adds a warning when an inline Doxygen comment has no argumentDmitri Gribenko1-0/+6
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth1-4/+3
2018-10-02Remove spurious assertion in -WdocumentationReid Kleckner1-1/+0
2016-09-20[cleanup] Remove excessive padding from TextTokenRetokenizer::PositionAlexander Shaposhnikov1-1/+1
2014-05-12[C++11] Use 'nullptr'. AST edition.Craig Topper1-3/+3
2013-08-23Comment parsing: fix a bug where a line with whitespace between two paragraphsDmitri Gribenko1-0/+21
2013-05-05Replace ArrayRef<T>() with None, now that we have an implicit ArrayRef constr...Dmitri Gribenko1-3/+2
2013-04-18Comment parsing: simplify code. As a side effect, this also silences GCC'sDmitri Gribenko1-14/+10
2013-03-05doc parsing. Add @method and @callback forFariborz Jahanian1-2/+0
2013-03-05doc parsing. We want to issue a strong warning whenFariborz Jahanian1-0/+2
2013-03-04Comment parsing: refactor handling of command markers in ASTDmitri Gribenko1-3/+5
2013-03-02Some refactoring in my patch on documentFariborz Jahanian1-11/+13
2013-03-01comment parsing. Keep the original command format Fariborz Jahanian1-0/+4
2013-02-09Comment parsing: use CharInfo.hDmitri Gribenko1-5/+1
2013-01-26Comment parsing: actually check for a block command after "\param x"Dmitri Gribenko1-6/+23
2012-12-19Fix PR14591: Windows newlines in doxygen comments cause failed assertion inDmitri Gribenko1-2/+1
2012-12-19Comment parsing: add a missing 'else'. Found by inspection.Dmitri Gribenko1-1/+1
2012-12-04Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth1-2/+2
2012-11-18Documentation parsing: propely handle a lone '\endverbatim' and emit a warning.Dmitri Gribenko1-0/+8
2012-09-11Comment parsing: handle non-builtin commands correctly. After semanticDmitri Gribenko1-0/+7
2012-09-10Comment AST: TableGen'ize all command lists in CommentCommandTraits.cpp.Dmitri Gribenko1-29/+32
2012-08-09Comment parsing: extract TableGen'able pieces into new CommandTraits class.Dmitri Gribenko1-8/+11
2012-08-06Comment parsing: fix crash on \tparam followed immediately by another blockDmitri Gribenko1-1/+4
2012-08-06Comment parser and sema: remove useless return valuesDmitri Gribenko1-58/+63
2012-07-31Comment parsing: add support for \tparam command on all levels.Dmitri Gribenko1-9/+33
2012-07-30Comment parser: don't crash on a completely empty \param followed by a blockDmitri Gribenko1-2/+2
2012-07-24Comment parsing: allow newlines between \param, direction specification (e.g.,Dmitri Gribenko1-6/+28
2012-07-24Comment parsing: couple TextTokenRetokenizer and comment parser together toDmitri Gribenko1-50/+42
2012-07-24Move TextTokenRetokenizer from CommentLexer.h to CommentParser.cpp since it isDmitri Gribenko1-0/+203
2012-07-24Comment parsing: retokenized text tokens are now pushed back in correct (notDmitri Gribenko1-2/+5
2012-07-20Fix PR13411: Comment parsing: failed assertion on unterminated verbatim block.Dmitri Gribenko1-5/+10
2012-07-18This fits into 80 columns without wrapping.Dmitri Gribenko1-2/+1
2012-07-13Comment parsing: repaint the bikesched: rename 'HTML open tags' to 'HTML star...Dmitri Gribenko1-50/+50
2012-07-11Enable comment parsing and semantic analysis to emit diagnostics. A fewDmitri Gribenko1-24/+74
2012-07-06Sprinkle llvm_unreachable around to placate GCC's -Wreturn-type.Matt Beaumont-Gay1-2/+1
2012-07-06Stop using new[] on llvm::BumpPtrAllocator.Dmitri Gribenko1-1/+2
2012-07-06CommentParser.cpp: remove unused variable.Dmitri Gribenko1-1/+0
2012-07-06Implement AST classes for comments, a real parser for Doxygen comments and aDmitri Gribenko1-0/+414