summaryrefslogtreecommitdiffstats
path: root/unittests/Tooling/RecursiveASTVisitorTest.cpp
Commit message (Expand)AuthorAgeFilesLines
* RecursiveASTVisitor should visit the nested name qualifiers inAlex Lorenz2017-07-111-0/+58
* Make sure TraverseInitListExpr visits InitListExpr exactly twiceStephan Bergmann2017-06-271-0/+86
* [AST] RecursiveASTVisitor should not crash on lambdas with type attributesAlex Lorenz2017-05-101-0/+8
* Remove custom handling of array copies in lambda by-value array capture andRichard Smith2016-12-141-19/+0
* [RecursiveASTVisitor] Visit the implicit expression of a CXXDefaultArgExprMalcolm Parsons2016-10-261-0/+17
* Let RecursiveASTVisitor visit array index VarDeclsNico Weber2016-01-221-0/+19
* Replace some tabs with spaces.Nico Weber2016-01-221-4/+3
* Separated RecursiveASTVisitorTest into multiple files.Manuel Klimek2014-10-091-513/+12
* RAV: visit copy expressions of captured variables in blocks (ObjC++11)Alp Toker2014-06-261-0/+10
* Fix RecursiveASTVisitor to visit types in ObjCPropertyDeclAlp Toker2014-06-061-0/+9
* [modules] Fix ODR violation: there's another clang::TypeLocVisitor elsewhere.Richard Smith2014-05-191-3/+4
* Sort all the #include lines with LLVM's utils/sort_includes.py whichChandler Carruth2014-01-071-1/+0
* Update RecursiveASTVisitor so that it visits attributes. This is currentlyDeLesley Hutchins2013-12-301-0/+39
* Add a test case to test RAV visits parameters of implicit copy constructor.Michael Han2013-09-121-3/+7
* Teach RAV to visit parameter variable declarations of implicit functions. Fix...Michael Han2013-09-111-0/+25
* Mark lambda closure classes as being implicitly-generated.James Dennett2013-09-051-0/+26
* Expose LambdaIntroducer::DefaultLoc in the AST's LambdaExpr.James Dennett2013-08-091-1/+20
* Add a hook RecursiveASTVisitor::TraverseLambdaBody, to enable visitors toJames Dennett2013-07-101-0/+25
* Bug fix: Make RecursiveASTVisitor<T>::TraverseLambdaExpr callJames Dennett2013-06-301-2/+19
* Streamify getNameForDiagnostic and remove the string versions of PrintTemplat...Benjamin Kramer2013-02-221-2/+3
* Allow RecursiveASTVisitor to visit CXXCtorInitializer objects for whichJames Dennett2012-08-241-0/+60
* Part of PR13618: visit the TypeLoc when RecursiveASTVisitor visits a Compound...Richard Smith2012-08-171-0/+8
* Don't forget to apply #pragma pack to partial and explicit specializations ofRichard Smith2012-08-171-0/+7
* Add testing for CommentHandler, and fix a bug where trailing comments in #elseRichard Smith2012-06-241-116/+1
* Make the RecursiveASTVisitor visit the body of a range-based for loopDaniel Jasper2012-06-211-1/+2
* Rename shouldVisitImplicitDeclarations to shouldVisitImplicitCode.Daniel Jasper2012-06-131-1/+25
* RecursiveASTVisitor: add ability to visit implicit declarations. Patch byRichard Smith2012-06-051-0/+27
* Only visit default arguments for template declarations when visiting the temp...Richard Smith2012-05-301-0/+54
* Test commit - Fix typo in comment.Daniel Jasper2012-05-301-1/+1
* RecursiveASTVisitor:Richard Smith2012-05-091-0/+13
* Unrevert r155951, reverted in r155962, with two changes:Richard Smith2012-05-021-0/+36
* Revert "Fix RecursiveASTVisitor's data recursion to call the Traverse* functi...Andrew Trick2012-05-011-35/+0
* Fix RecursiveASTVisitor's data recursion to call the Traverse* functions if theyRichard Smith2012-05-011-0/+35
* Fix file name in comment.David Blaikie2012-04-261-1/+1
* RecursiveASTVisitor: When in 'shouldVisitTemplateInstantiations' mode, visitRichard Smith2012-04-251-0/+94
* RecursiveASTVisitor: Visit instantiations of member templates of classRichard Smith2012-04-241-4/+19
* Fix PR12608. Patch contributed by Yang Chen.Manuel Klimek2012-04-231-0/+26
* No need to put the SourceManager in with the ASTContext, as the ASTContextManuel Klimek2012-04-201-3/+1
* Adds a unit test for the RecursiveASTVisitor.Manuel Klimek2012-04-191-0/+215