index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
AST
/
RawCommentList.cpp
Age
Commit message (
Expand
)
Author
2013-05-03
[Doc parsing] Provide diagnostics for unknown documentation
Fariborz Jahanian
2013-04-26
Comment parsing: -fparse-all-comments: recognize empty line comments
Dmitri Gribenko
2013-04-10
Add an option to parse all comments as documentation comments
Dmitri Gribenko
2012-12-04
Sort all of Clang's files under 'lib', and fix up the broken headers
Chandler Carruth
2012-09-29
Move the 'find macro by spelling' infrastructure to the Preprocessor class and
Dmitri Gribenko
2012-09-10
Comment AST: TableGen'ize all command lists in CommentCommandTraits.cpp.
Dmitri Gribenko
2012-09-09
RawCommentList: don't copy the whole new RawComment to LastComment each time.
Dmitri Gribenko
2012-08-31
Remove the useless CommentOptions class.
Dmitri Gribenko
2012-08-28
Merging consecutive comments: be more conservative.
Dmitri Gribenko
2012-08-14
Attaching comments to redeclarations: fix wrong assumptions
Dmitri Gribenko
2012-08-11
Attaching comments to declarations: find comment attached to any redeclaration
Dmitri Gribenko
2012-08-09
Comment parsing: extract TableGen'able pieces into new CommandTraits class.
Dmitri Gribenko
2012-07-27
Implement resolving of HTML character references (named: &, decimal: *,
Dmitri Gribenko
2012-07-11
Enable comment parsing and semantic analysis to emit diagnostics. A few
Dmitri Gribenko
2012-07-06
Don't store pointers into a std::vector (RawCommentList::Comments). Although
Dmitri Gribenko
2012-07-04
Renamed RawComment kinds to avoid name clash.
Abramo Bagnara
2012-07-02
Add a new libclang completion API to get brief documentation comment that is
Dmitri Gribenko
2012-06-27
Initialize RawComment::BriefTextValid in other constructor, too.
Dmitri Gribenko
2012-06-26
Implement a lexer for structured comments.
Dmitri Gribenko
2012-06-21
Handle include directive with comments. It turns out that in this case comme...
Dmitri Gribenko
2012-06-21
VC9 does not like heterogenous compare function objects.
Dmitri Gribenko
2012-06-21
RawCommentList::addComment: fix the assertion so it actually checks that new ...
Dmitri Gribenko
2012-06-20
Remove unused ASTContext& arg in RawCommentList::addComment, as pointed out b...
Dmitri Gribenko
2012-06-20
Fix a big layering violation introduced by r158771.
Chandler Carruth