Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Comment to HTML conversion: correct typo in CSS class name: taram -> tparam | Dmitri Gribenko | 2012-08-01 | 1 | -2/+2 | |
| | | | | llvm-svn: 161145 | |||||
* | Comment to HTML conversion: refactor. Extracted a class to for FullComment | Dmitri Gribenko | 2012-08-01 | 1 | -122/+137 | |
| | | | | | | semantic parts -- this will be reused for comment to XML conversion. llvm-svn: 161139 | |||||
* | Comment to HTML conversion: skip \tparam commands with whitespace paragraphs | Dmitri Gribenko | 2012-08-01 | 1 | -0/+3 | |
| | | | | llvm-svn: 161096 | |||||
* | Comment to HTML conversion: escape HTML special characters in command arguments | Dmitri Gribenko | 2012-08-01 | 1 | -7/+17 | |
| | | | | llvm-svn: 161094 | |||||
* | Comment parsing: add support for \tparam command on all levels. | Dmitri Gribenko | 2012-07-31 | 1 | -0/+112 | |
| | | | | | | | | | | The only caveat is renumbering CXCommentKind enum for aesthetic reasons -- this breaks libclang binary compatibility, but should not be a problem since API is so new. This also fixes PR13372 as a side-effect. llvm-svn: 161087 | |||||
* | Move comment from member operator() to class. | Dmitri Gribenko | 2012-07-30 | 1 | -2/+2 | |
| | | | | llvm-svn: 160980 | |||||
* | Add missing include for Linux buildbot | Dmitri Gribenko | 2012-07-30 | 1 | -0/+2 | |
| | | | | llvm-svn: 160971 | |||||
* | Add an assert to ParamCommandComment::getParamIndex() -- it should not be | Dmitri Gribenko | 2012-07-30 | 1 | -4/+11 | |
| | | | | | | called unless index is valid. llvm-svn: 160970 | |||||
* | libclang comment to HTML rendering: \result is the same as \returns | Dmitri Gribenko | 2012-07-25 | 1 | -1/+2 | |
| | | | | llvm-svn: 160738 | |||||
* | libclang comments AST: clang_ParamCommandComment_getParamName: don't assert | Dmitri Gribenko | 2012-07-23 | 1 | -1/+1 | |
| | | | | | | | when a \param command does not have a parameter name, just return an empty string instead. llvm-svn: 160638 | |||||
* | Comment AST: add InlineContentComment::RenderKind to specify a default | Dmitri Gribenko | 2012-07-23 | 1 | -21/+43 | |
| | | | | | | | | rendering mode for clients that don't want to interpret Doxygen commands. Also add a libclang API to query this information. llvm-svn: 160633 | |||||
* | Comment to HTML conversion: add more CSS classes to identify function arguments | Dmitri Gribenko | 2012-07-21 | 1 | -67/+66 | |
| | | | | | | | by index. This is useful if the user does not document all arguments, and we can't find a particular argument by index via :nth-of-type() CSS selector. llvm-svn: 160595 | |||||
* | Add libclang APIs to walk comments ASTs and an API to convert a comment to an | Dmitri Gribenko | 2012-07-20 | 1 | -0/+657 | |
HTML fragment. For testing, c-index-test now has even more output: * HTML rendering of a comment * comment AST tree dump in S-expressions like Comment::dump(), but implemented * with libclang APIs. llvm-svn: 160577 |