| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Currently all DeclContexts are Decls as well; use cast<Decl> instead of dyn_c... | Argyrios Kyrtzidis | 2009-02-17 | 1 | -8/+2 |
* | DeclContext had its "casting machinery" inside the class definition so that i... | Argyrios Kyrtzidis | 2009-02-16 | 1 | -2/+46 |
* | Make DeclContexts maintenance a bit easier. | Argyrios Kyrtzidis | 2009-02-16 | 1 | -1/+1 |
* | Basic representation of C++ class templates, from Andrew Sutton. | Douglas Gregor | 2009-02-04 | 1 | -1/+2 |
* | Semantic analysis, ASTs, and unqualified name lookup support for C++ | Douglas Gregor | 2009-02-03 | 1 | -3/+15 |
* | Add a macro-based enumeration of all of the Decl nodes (like we do | Douglas Gregor | 2009-02-02 | 1 | -225/+27 |
* | Remove many references to ASTContext::getAllocator(), replacing them with cal... | Steve Naroff | 2009-01-27 | 1 | -1/+1 |
* | Allocate expresssions through ASTContext (still more work to do). | Steve Naroff | 2009-01-20 | 1 | -0/+29 |
* | Rename DeclContext::insert to DeclContext::makeDeclVisibleInContext and docum... | Douglas Gregor | 2009-01-20 | 1 | -8/+8 |
* | Remove the TopLevelDecls from TranslationUnit, since all of those decls are o... | Douglas Gregor | 2009-01-20 | 1 | -15/+10 |
* | Remove ScopedDecl, collapsing all of its functionality into Decl, so | Douglas Gregor | 2009-01-20 | 1 | -35/+59 |
* | Teach DeclContext how to find the primary declaration for any TagDecl | Douglas Gregor | 2009-01-17 | 1 | -29/+7 |
* | Fix a subtle bug in DeclContext::DestroyDecls(). | Steve Naroff | 2009-01-14 | 1 | -4/+8 |
* | Turn off some Destroy calls that are currenly causing double-destruction of S... | Douglas Gregor | 2009-01-13 | 1 | -1/+5 |
* | Cleanup DeclContext::addDecl and DeclContext::insert interface, from Piotr Rak | Douglas Gregor | 2009-01-12 | 1 | -6/+5 |
* | Replace DeclContext's vector of ScopedDecl pointers with a linked list | Douglas Gregor | 2009-01-09 | 1 | -2/+11 |
* | Make sure that ScopedDecls passed to DeclContext::addDecl are added into thei... | Douglas Gregor | 2009-01-09 | 1 | -1/+1 |
* | Move property API's up to ObjCContainerDecl (removing a lot of duplicate code). | Steve Naroff | 2009-01-09 | 1 | -0/+1 |
* | Unify the code for defining tags in C and C++, so that we always | Douglas Gregor | 2009-01-08 | 1 | -0/+1 |
* | This is a large/messy diff that unifies the ObjC AST's with DeclContext. | Steve Naroff | 2009-01-08 | 1 | -10/+20 |
* | When determining whether a variable is a file-scoped variable, check | Douglas Gregor | 2009-01-07 | 1 | -2/+2 |
* | Initial implementation of anonymous unions (and, as a GNU extension, | Douglas Gregor | 2009-01-07 | 1 | -1/+1 |
* | Allow Objective-C entities to be declared within a transparent context | Douglas Gregor | 2009-01-06 | 1 | -0/+7 |
* | Minor tweaks to the transparent declcontext patch | Douglas Gregor | 2009-01-06 | 1 | -1/+2 |
* | Introduce support for "transparent" DeclContexts, which are | Douglas Gregor | 2009-01-05 | 1 | -7/+52 |
* | Don't push OverloadedFunctionDecls onto the chain of declarations | Douglas Gregor | 2008-12-23 | 1 | -23/+10 |
* | Don't explicitly represent OverloadedFunctionDecls within | Douglas Gregor | 2008-12-23 | 1 | -68/+95 |
* | Add case for the new AST node. | Fariborz Jahanian | 2008-12-20 | 1 | -1/+8 |
* | Don't double-destroy constructors defined out-of-line. This is a | Douglas Gregor | 2008-12-15 | 1 | -1/+0 |
* | Address some comments on the name lookup/DeclContext patch from Chris | Douglas Gregor | 2008-12-11 | 1 | -10/+8 |
* | Unifies the name-lookup mechanisms used in various parts of the AST | Douglas Gregor | 2008-12-11 | 1 | -7/+269 |
* | Representation of template type parameters and non-type template | Douglas Gregor | 2008-12-05 | 1 | -0/+2 |
* | -Add several ObjC types to Decl::getDeclKindName(), a useful debug hook. | Steve Naroff | 2008-12-01 | 1 | -0/+3 |
* | Make DeclContext::getLexicalParent reuse DeclContext::getParent. | Argyrios Kyrtzidis | 2008-11-19 | 1 | -4/+1 |
* | Take care another assert: | Argyrios Kyrtzidis | 2008-11-19 | 1 | -0/+9 |
* | Make the non-const DeclContext::getParent call the const version, instead of ... | Argyrios Kyrtzidis | 2008-11-19 | 1 | -3/+3 |
* | Parsing, ASTs, and semantic analysis for the declaration of conversion | Douglas Gregor | 2008-11-07 | 1 | -0/+1 |
* | Parsing, representation, and preliminary semantic analysis of destructors. | Douglas Gregor | 2008-11-05 | 1 | -0/+1 |
* | Add support for parsing and representing C++ constructor declarations. | Douglas Gregor | 2008-10-31 | 1 | -0/+1 |
* | Preliminary support for function overloading | Douglas Gregor | 2008-10-21 | 1 | -2/+9 |
* | Simplify handling of struct/union/class tags. | Argyrios Kyrtzidis | 2008-10-15 | 1 | -5/+4 |
* | Improve the const-ness of a few methods. | Argyrios Kyrtzidis | 2008-10-12 | 1 | -3/+3 |
* | Implement more efficient Decl <-> DeclContext conversions. | Argyrios Kyrtzidis | 2008-10-12 | 1 | -10/+10 |
* | Final phase of converting BlockDecls over to DeclContext. This is unfortunate... | Steve Naroff | 2008-10-10 | 1 | -0/+2 |
* | - Add BlockDecl AST node. | Steve Naroff | 2008-10-08 | 1 | -0/+3 |
* | Added ObjCAtDefsFieldDecl to represent FieldDecls created by @defs. | Ted Kremenek | 2008-08-20 | 1 | -1/+6 |
* | More #include cleaning | Daniel Dunbar | 2008-08-11 | 1 | -0/+1 |
* | Add some C++ Decl statistics. | Argyrios Kyrtzidis | 2008-08-10 | 1 | -3/+12 |
* | Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl. | Chris Lattner | 2008-06-17 | 1 | -0/+1 |
* | Added new C++ AST Decl subclasses. | Argyrios Kyrtzidis | 2008-06-09 | 1 | -0/+8 |