Age | Commit message (Expand) | Author |
2011-01-08 | Renamed CXXBaseOrMemberInitializer to CXXCtorInitializer. This is both shorter, | Sean Hunt |
2011-01-04 | Implement pack expansion of base initializers, so that we can | Douglas Gregor |
2011-01-03 | Implement pack expansions whose pattern is a base-specifier. | Douglas Gregor |
2010-12-24 | Refactor how we collect attributes during parsing, and add slots for attributes | John McCall |
2010-12-20 | Extend the parser to support pack expansions within exception | Douglas Gregor |
2010-12-10 | Added ParenType type node. | Abramo Bagnara |
2010-12-03 | Added struct/class syntactic info for c++0x scoped enum. | Abramo Bagnara |
2010-11-18 | In some situations, TemplateArgumentLoc wasn't setting TypeSourceLoc (see | Craig Silverstein |
2010-11-10 | Region-allocate all AttributeList objects from a factory object instead of ma... | Ted Kremenek |
2010-11-10 | Diagnose attempst to template using declarations and using directives. | John McCall |
2010-11-09 | tidy up | Chris Lattner |
2010-11-09 | fix PR8380, a crash on invalid due to an illogical DeclSpec SourceRange being... | Chris Lattner |
2010-10-19 | Tag references shouldn't ever get template parameter lists. | John McCall |
2010-10-19 | Redirect templated friend class decls to a new Sema callback and | John McCall |
2010-10-12 | Parse default arguments within member functions in source order, from | Douglas Gregor |
2010-10-11 | Add parsing support for Microsoft attributes. MS attributes will just be skip... | Francois Pichet |
2010-10-08 | Implement C++0x scoped enumerations, from Daniel Wallin! (and tweaked a | Douglas Gregor |
2010-10-01 | Implement the C++0x "trailing return type" feature, e.g., | Douglas Gregor |
2010-09-24 | Allow the use of C++0x deleted functions as an extension in C++98. | Anders Carlsson |
2010-09-09 | Eliminate the comma locations from all of the Sema routines that deal | Douglas Gregor |
2010-09-07 | Improve recovery when there is a stray ']' or ')' before the ';' at | Douglas Gregor |
2010-09-07 | Improve recovery when a comma is missing between enumerators in an | Douglas Gregor |
2010-09-07 | Improve diagnostic and recovery when missing a comma between base or | Douglas Gregor |
2010-08-31 | Enable inline namespaces in C++03 as an extension. | Sebastian Redl |
2010-08-28 | Basic code completion support for the base and member initializers in | Douglas Gregor |
2010-08-27 | Parser support for inline namespaces | Sebastian Redl |
2010-08-26 | One who seeks knowledge learns something new every day. | John McCall |
2010-08-24 | Parse all kinds of declarations as part of a linkage-specification, | Douglas Gregor |
2010-08-24 | OwningExprResult -> ExprResult. This patch brought to you by | John McCall |
2010-08-24 | Abstract out passing around types and kill off ActionBase. | John McCall |
2010-08-23 | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall |
2010-08-23 | Push DeclGroupRefs and TemplateNames in an opaque but type-safe way | John McCall |
2010-08-23 | Sundry incremental steps towards killing off Action. | John McCall |
2010-08-21 | DeclPtrTy -> Decl * | John McCall |
2010-08-20 | Another step in the process of making the parser depend on Sema: | John McCall |
2010-08-11 | -Make TokenID of IdentifierInfo read-only, remove setTokenID(). | Argyrios Kyrtzidis |
2010-08-05 | Allow multiple __declspec attributes after a class-key. | John McCall |
2010-07-30 | Fixed typedef inside extern "C". | Abramo Bagnara |
2010-07-30 | Improve error recovery when presented with an ill-formed template-id | John McCall |
2010-07-26 | Add source location information to C++ base specifiers. | Nick Lewycky |
2010-07-16 | Treat template parameters as part of the declaration-specifiers for the | John McCall |
2010-07-02 | Move the "current scope" state from the Parser into Action. This | Douglas Gregor |
2010-06-28 | Partial fix for PR7267 based on comments by John McCall on an earlier patch. | Chandler Carruth |
2010-06-21 | When semantic analysis fail to introduce a class or class template, | Douglas Gregor |
2010-06-16 | When parsing cached C++ method declarations/definitions, save the | Douglas Gregor |
2010-06-16 | Make the "extra ';' inside a struct or union" diagnostic more | Douglas Gregor |
2010-06-13 | Allow an asm label specifier on C++ methods, like GCC does. | Chris Lattner |
2010-06-05 | Added AccessSpecDecl node. | Abramo Bagnara |
2010-05-30 | Don't try to parse class template specializations in C. It can only | Douglas Gregor |
2010-05-28 | Don't just skip over the entire tag definition if the parser action didn't | John McCall |