aboutsummaryrefslogtreecommitdiff
path: root/include/clang/AST/DeclBase.h
AgeCommit message (Expand)Author
2009-11-17Instead of hanging a using declaration's target decls directly off the using John McCall
2009-10-16Keep track of whether declararions were loaded from a precompiledDouglas Gregor
2009-10-01Anonymous namespaces, sema + codegen. A lot of semantics are still broken,John McCall
2009-09-26Make Decl::dump const.Anders Carlsson
2009-09-14Skeletal support for friend class templates.John McCall
2009-09-13Fix a bug in getFriendObjectKind where we would clear out all mask bits excep...Anders Carlsson
2009-09-10When performing unqualified name lookup into a DeclContext, also look intoDouglas Gregor
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-09-01Add DeclContext::Equals to compare declaration contexts based on their primar...Douglas Gregor
2009-08-31Fix bug 4784 and allow friend declarations to properly extendJohn McCall
2009-08-28Omnibus friend decl refactoring. Instead of cloning AST classes for friendJohn McCall
2009-08-27When checking whether one declaration context encloses another, make sure to ...Douglas Gregor
2009-08-11Argument-dependent lookup for friend declarations. Add a new decl type,John McCall
2009-08-07Just add global scope to the associated namespaces set instead of tracking itJohn McCall
2009-07-27Make ObjCImplDecl inherit from ObjCContainerDecl.Argyrios Kyrtzidis
2009-07-21Add an assertion for the return value of Decl::getNextRedeclaration().Argyrios Kyrtzidis
2009-07-18Fix a comment.Argyrios Kyrtzidis
2009-07-18Introduce a redecl_iterator in Decl class, so that we can do a "iterate over ...Argyrios Kyrtzidis
2009-07-18Move the functionality of ASTContext::getCanonicalDecl(), into a virtual meth...Argyrios Kyrtzidis
2009-07-17ObjCCategoryImplDecl and ObjCImplementation do not derive directly from DeclC...Argyrios Kyrtzidis
2009-07-05Introduce the virtual method Decl::getPrimaryDecl().Argyrios Kyrtzidis
2009-06-30De-ASTContext-ify DeclContext.Argyrios Kyrtzidis
2009-06-30Introduce DeclContext::getParentASTContext().Argyrios Kyrtzidis
2009-06-30Remove the ASTContext parameter from the getBody() methods of Decl and subcla...Argyrios Kyrtzidis
2009-06-30Remove the ASTContext parameter from the printing related methods of Decl.Argyrios Kyrtzidis
2009-06-30Remove the ASTContext parameter from the attribute-related methods of Decl.Argyrios Kyrtzidis
2009-06-29-Keep a reference to the ASTContext inside the TranslationUnitDecl.Argyrios Kyrtzidis
2009-06-25Improved semantic analysis and AST respresentation for functionDouglas Gregor
2009-06-20Introduce Decl::getSourceRange() which, like Stmt::getSourceRange(), represen...Argyrios Kyrtzidis
2009-06-20Parsing and AST support for using declarations, from John Thompson!Douglas Gregor
2009-06-19Keep track of when declarations are "used" according to C andDouglas Gregor
2009-06-18Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>.Douglas Gregor
2009-06-17Move CXXMethodDecl::OutOfLineDefinition into Decl::OutOfLine.Argyrios Kyrtzidis
2009-06-13Improvements to TemplateArgumentListBuilder to make it work better with param...Anders Carlsson
2009-05-30Expose an API to print a group of decls (like "int a,b;"). Eli Friedman
2009-05-30Refactor and clean up the AST printer, so that it uses a DeclVisitor,Douglas Gregor
2009-05-28Introduced DeclContext::isDependentContext, which determines whether aDouglas Gregor
2009-04-26Implement function-try-blocks. However, there's a very subtle bug that I can'...Sebastian Redl
2009-04-24Eliminate Sema::ObjCImplementations, relying instead on name lookup. What's g...Douglas Gregor
2009-04-22Remove the serialization code that predates precompiledDouglas Gregor
2009-04-18FunctionDecl::getBody() is getting an ASTContext argument for use inDouglas Gregor
2009-04-12add a new Decl::hasAttr<T>() predicate.Chris Lattner
2009-04-10Various minor fixes to PCH reading and writing, with generalDouglas Gregor
2009-04-09Implementation of pre-compiled headers (PCH) based on lazyDouglas Gregor
2009-04-09Propagate the ASTContext to various AST traversal and lookup functions.Douglas Gregor
2009-04-09Simple DeclContext's internal representation by always storing aDouglas Gregor
2009-04-07Move the internal DeclContext data structures into a separate header. Douglas Gregor
2009-03-29Push DeclGroup much farther throughout the compiler. Now the variousChris Lattner
2009-03-29switch DeclBase::DeclCtx to the new happy and type-safeChris Lattner
2009-03-29adjust to llvm mainline changes.Chris Lattner