aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Parse/Action.h
AgeCommit message (Expand)Author
2009-11-18Code completion after @property, providing the names of forward-declared prop...Douglas Gregor
2009-11-18Code completion for Objective-C properly listsDouglas Gregor
2009-11-18Incremental progress on using declarations. Split UnresolvedUsingDecl intoJohn McCall
2009-11-17Rename Objective-C message send completion functions to indicate that we're r...Douglas Gregor
2009-11-17Pass source locations of identifiers referenced by @class through Action::Act...Ted Kremenek
2009-11-11Introduce a new representation for template templateDouglas Gregor
2009-11-10Improve parsing of template arguments to lay the foundation forDouglas Gregor
2009-11-07Add basic code completion support for ObjC messages.Steve Naroff
2009-11-04Switch parsing of using declarations over to ParseUnqualifiedId.Douglas Gregor
2009-11-04Change our basic strategy for avoiding deprecation warnings when the decl useJohn McCall
2009-11-03Parsing and semantic analysis for template-ids that name overloadedDouglas Gregor
2009-11-03Replace the code that parses member access expressions after "." orDouglas Gregor
2009-11-03Use ParseUnqualifiedId when parsing id-expressions. This eliminatesDouglas Gregor
2009-10-25change Sema::ActOnFriendTypeDecl to use GetTypeForDeclarator instead Chris Lattner
2009-10-22When building and instantiating a template-id reference expression, such asDouglas Gregor
2009-10-19Parse a simple-template-id following a '~' when calling a destructor, e.g.,Douglas Gregor
2009-10-13Improve diagnostics when the parser encounters a declarator with anDouglas Gregor
2009-10-08Add code completion support for ObjC property declarations/attributes.Steve Naroff
2009-09-25WIP implementation of explicit instantiation of function templates,Douglas Gregor
2009-09-24When entering the scope of a declarator, make sure that the scope isDouglas Gregor
2009-09-22Implement code completion within a function call, triggered after theDouglas Gregor
2009-09-21Another code-completion TODODouglas Gregor
2009-09-21Code completion for ordinary names when we're starting a declaration, express...Douglas Gregor
2009-09-21Code completion for "case" statements within a switch on an expressionDouglas Gregor
2009-09-18C++ code completion after the "operator" keyword. Provide overloadedDouglas Gregor
2009-09-18Introduce four new code-completion hooks for C++:Douglas Gregor
2009-09-18Implement code completion for tags, e.g., code completion after "enum"Douglas Gregor
2009-09-17Initial implementation of a code-completion interface in Clang. InDouglas Gregor
2009-09-16Improved representation and support for friend class templates. Angst about ...John McCall
2009-09-14Skeletal support for friend class templates.John McCall
2009-09-11Alter Action's friend interface to prepare for templated friend declarations andJohn McCall
2009-09-11Support elaborated dependent types and diagnose tag mismatches.John McCall
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-09-08Support templateids in friend declarations. Fixes bug 4859.John McCall
2009-09-04If a destructor is referenced or a pseudo-destructor expression isDouglas Gregor
2009-09-04Parse extern templates, pass that information all the way to Sema,Douglas Gregor
2009-09-04Correctly handle elaborated template ids. Still not handled properly for fri...John McCall
2009-09-02Rewrite of our handling of name lookup in C++ member access expressions, e.g.,Douglas Gregor
2009-08-31Add parsing for references to member function templates with explicitDouglas Gregor
2009-08-31Support explicit C++ member operator syntax, from James Porter!Douglas Gregor
2009-08-29Set the access specifier for using decls.Anders Carlsson
2009-08-26When we know that we are parsing a class-name, implicitly construct aDouglas Gregor
2009-08-26Address some of Doug's comments.Anders Carlsson
2009-08-25Parsing of pseudo-destructors.Anders Carlsson
2009-08-25Improve support for out-of-line definitions of nested templates andDouglas Gregor
2009-08-20Initial support for parsing and representation of member function templates.Douglas Gregor
2009-08-18Change ActOnReturnStmt to not take a FullExprArg. Instead, Sema will wrap the...Anders Carlsson
2009-08-16AddInitializerToDecl can't take a FullExprArg. Make it take an ExprArg, and c...Anders Carlsson
2009-08-11Argument-dependent lookup for friend declarations. Add a new decl type,John McCall
2009-08-10Take 2 on AltiVec-style vector initializers. Nate Begeman