| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove warnings about using override control keywords in inline function defi... | Anders Carlsson | 2011-03-25 | 1 | -5/+0 |
* | Remove 'new' from virt-specifier since it's going to be removed in the next C... | Anders Carlsson | 2011-03-25 | 1 | -2/+0 |
* | Make sure that we always pop a function's scope *before* we call | Douglas Gregor | 2011-03-16 | 1 | -2/+3 |
* | When parsing an out-of-line member function declaration, we must delay | John McCall | 2011-02-14 | 1 | -1/+3 |
* | PR9037: Allow override, final, and new as an extension on inline members. | Nico Weber | 2011-01-28 | 1 | -4/+12 |
* | Pass the VirtSpecifiers along to Sema::ActOnCXXMemberDeclarator. | Anders Carlsson | 2011-01-20 | 1 | -1/+2 |
* | Added ParenType type node. | Abramo Bagnara | 2010-12-10 | 1 | -2/+1 |
* | Parse default arguments within member functions in source order, from | Douglas Gregor | 2010-10-12 | 1 | -134/+160 |
* | When parsing default function arguments, do not mark any declarations | Douglas Gregor | 2010-09-11 | 1 | -0/+5 |
* | One who seeks knowledge learns something new every day. | John McCall | 2010-08-26 | 1 | -1/+1 |
* | OwningExprResult -> ExprResult. This patch brought to you by | John McCall | 2010-08-24 | 1 | -1/+1 |
* | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall | 2010-08-23 | 1 | -2/+2 |
* | DeclPtrTy -> Decl * | John McCall | 2010-08-21 | 1 | -3/+2 |
* | Another step in the process of making the parser depend on Sema: | John McCall | 2010-08-20 | 1 | -2/+2 |
* | Change warning about incomplete parsing of C++ default arg to error and provi... | Argyrios Kyrtzidis | 2010-08-09 | 1 | -6/+2 |
* | Replace a parser assertion with a warning, suggestion by Doug. | Argyrios Kyrtzidis | 2010-08-09 | 1 | -3/+8 |
* | Introduce a new token kind 'cxx_defaultarg_end' to mark the end of C++ defaul... | Argyrios Kyrtzidis | 2010-08-06 | 1 | -1/+5 |
* | Move the "current scope" state from the Parser into Action. This | Douglas Gregor | 2010-07-02 | 1 | -13/+13 |
* | Cure for Doug's insomnia. | Argyrios Kyrtzidis | 2010-06-19 | 1 | -3/+3 |
* | Make sure the caching mechanism in Parser::ParseLexedMethodDefs is robust aga... | Argyrios Kyrtzidis | 2010-06-17 | 1 | -4/+16 |
* | Per conversation with Doug, remove two assertions in ParseLexedMethodDefs() that | Ted Kremenek | 2010-06-17 | 1 | -5/+3 |
* | Make Parser::ConsumeAndStoreUntil() more consistent with Parser::SkipUntil(). | Argyrios Kyrtzidis | 2010-04-23 | 1 | -15/+13 |
* | Fix 80-cols violtaions | Alexis Hunt | 2010-04-14 | 1 | -4/+7 |
* | Diagnose misordered initializers in constructor templates immediately instead of | John McCall | 2010-04-10 | 1 | -3/+8 |
* | Add a few asserts to be on the safe side. | Argyrios Kyrtzidis | 2010-03-31 | 1 | -0/+13 |
* | When "delayed parsing" C++ default arguments, if there is an error, there may... | Argyrios Kyrtzidis | 2010-03-30 | 1 | -0/+12 |
* | Refactor to remove more dependencies on PreDeclaratorDC. I seem to have made | John McCall | 2009-12-19 | 1 | -2/+8 |
* | Have the parser tell sema whether a member declaration is a function definiti... | Sebastian Redl | 2009-11-24 | 1 | -1/+2 |
* | Alter Action's friend interface to prepare for templated friend declarations and | John McCall | 2009-09-11 | 1 | -1/+1 |
* | Remove tabs, and whitespace cleanups. | Mike Stump | 2009-09-09 | 1 | -9/+9 |
* | Make sure to adjust function template declarations to their templated | Douglas Gregor | 2009-08-24 | 1 | -1/+1 |
* | Implement delayed parsing for member function templates. Fixes PR4608. | Douglas Gregor | 2009-08-22 | 1 | -3/+12 |
* | Initial support for parsing and representation of member function templates. | Douglas Gregor | 2009-08-20 | 1 | -3/+9 |
* | Argument-dependent lookup for friend declarations. Add a new decl type, | John McCall | 2009-08-11 | 1 | -1/+1 |
* | First pass at friend semantics. | John McCall | 2009-08-06 | 1 | -1/+5 |
* | Fix the parsing of default arguments for inline member function | Eli Friedman | 2009-07-22 | 1 | -0/+2 |
* | Patch to accomodate Doug's comment on default | Fariborz Jahanian | 2009-07-21 | 1 | -1/+1 |
* | Added ASTs to destructor decl AST for default destruction of object's | Fariborz Jahanian | 2009-07-15 | 1 | -1/+1 |
* | Build AST for default ctor-initializer when constructor has | Fariborz Jahanian | 2009-07-14 | 1 | -2/+1 |
* | Patch to build AST for ctor's initializer list according to | Fariborz Jahanian | 2009-07-14 | 1 | -0/+4 |
* | Reimplement much of the way that we track nested classes in the | Douglas Gregor | 2009-05-27 | 1 | -11/+36 |
* | The mysterious bug turns out to be an incredibly bone-headed mistake. | Sebastian Redl | 2009-04-26 | 1 | -1/+1 |
* | Implement function-try-blocks. However, there's a very subtle bug that I can'... | Sebastian Redl | 2009-04-26 | 1 | -7/+20 |
* | Push DeclGroup much farther throughout the compiler. Now the various | Chris Lattner | 2009-03-29 | 1 | -2/+1 |
* | Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for a | Chris Lattner | 2009-03-28 | 1 | -2/+3 |
* | Convert a bunch of actions to smart pointers, and also bring PrintParserCallb... | Sebastian Redl | 2009-03-15 | 1 | -1/+1 |
* | Simplify the interface to ParseFunctionStatementBody to not take | Chris Lattner | 2009-03-05 | 1 | -2/+2 |
* | move library-specific diagnostic headers into library private dirs. Reduce | Chris Lattner | 2009-01-29 | 1 | -1/+1 |
* | Split the single monolithic DiagnosticKinds.def file into one | Chris Lattner | 2009-01-27 | 1 | -1/+1 |
* | When we see a reference to a struct, class, or union like "struct X" | Douglas Gregor | 2009-01-09 | 1 | -1/+2 |