Age | Commit message (Expand) | Author |
2008-12-09 | Kick out the proof-of-concept ASTOwner and replace it with ASTOwningResult | Sebastian Redl |
2008-12-09 | Consistently use smart pointers for stmt and expr nodes in parser local varia... | Sebastian Redl |
2008-12-02 | Handle new by passing the Declaration to the Action, not a processed type. | Sebastian Redl |
2008-12-01 | Basic support for parsing templates, from Andrew Sutton | Douglas Gregor |
2008-11-26 | Attempt to unravel the if/else mess in Parser::ParseDirectDeclarator. | Argyrios Kyrtzidis |
2008-11-26 | Implement some suggestions by Daniel: | Argyrios Kyrtzidis |
2008-11-25 | Only call TryAnnotateScopeToken when parsing C++. | Daniel Dunbar |
2008-11-25 | Use RAII objects to ensure proper destruction of expression and statement AST... | Sebastian Redl |
2008-11-25 | Simple parsing of exception specifications, with no semantic analysis yet | Douglas Gregor |
2008-11-23 | Convert IdentifierInfo's to be printed the same as DeclarationNames | Chris Lattner |
2008-11-21 | Implementation of new and delete parsing and sema. | Sebastian Redl |
2008-11-19 | remove uses of IdentifierInfo::getName() | Chris Lattner |
2008-11-18 | Extend DeclarationName to support C++ overloaded operators, e.g., | Douglas Gregor |
2008-11-18 | Change a couple of the Parser::Diag methods to return DiagnosticInfo | Chris Lattner |
2008-11-17 | Eliminate all of the placeholder identifiers used for constructors, | Douglas Gregor |
2008-11-17 | Some cleanups for C++ operator overloading | Douglas Gregor |
2008-11-14 | Implement parsing and semantic checking of the 'mutable' keyword. | Sebastian Redl |
2008-11-12 | Don't build identifiers for C++ constructors, destructors, or | Douglas Gregor |
2008-11-11 | Fix PR3031 by silencing follow-on errors in invalid declarations. | Chris Lattner |
2008-11-08 | Implement support for C++ nested-name-specifiers ('foo::bar::x') in the Parse... | Argyrios Kyrtzidis |
2008-11-08 | Revert r58880, it breaks test/SemaCXX/constructor.cpp | Argyrios Kyrtzidis |
2008-11-08 | In a declarator, consider an identifier a constructor only if it is followed ... | Argyrios Kyrtzidis |
2008-11-07 | Changes in preparation for nested-name-specifiers. | Argyrios Kyrtzidis |
2008-11-07 | Parsing, ASTs, and semantic analysis for the declaration of conversion | Douglas Gregor |
2008-11-07 | Separate the parsing of type-specifiers from other declaration specifiers, so... | Douglas Gregor |
2008-11-06 | Parsing, ASTs, and semantic analysis for the declaration of overloaded | Douglas Gregor |
2008-11-05 | Parsing, representation, and preliminary semantic analysis of destructors. | Douglas Gregor |
2008-11-03 | Implement C++ DR 106 and C++ DR 540, both of which deal with | Douglas Gregor |
2008-10-31 | Add support for parsing and representing C++ constructor declarations. | Douglas Gregor |
2008-10-29 | Implement initialization of a reference (C++ [dcl.init.ref]) as part | Douglas Gregor |
2008-10-24 | -Add support for cv-qualifiers after function declarators. | Argyrios Kyrtzidis |
2008-10-20 | implement a couple fixme's by implementing __extension__ properly. | Chris Lattner |
2008-10-20 | Support attributes in *yet another* place. Is there any place you | Chris Lattner |
2008-10-20 | Fix a parser bug where we let attributes interfere with our disambiguation | Chris Lattner |
2008-10-20 | Remove an implemented fixme, only treat < as a type specifier | Chris Lattner |
2008-10-17 | Just do a diagIfAmbiguous -> warnIfAmbiguous rename. | Argyrios Kyrtzidis |
2008-10-15 | Issue a warning when there's an ambiguous function declarator (that could be ... | Argyrios Kyrtzidis |
2008-10-07 | In ParseParenDeclarator match "D.setGroupingParens(true);" with another setGr... | Argyrios Kyrtzidis |
2008-10-06 | Implement support for C++ direct initializers in declarations, e.g. "int x(1);". | Argyrios Kyrtzidis |
2008-10-06 | Allow variadic arguments without named ones for C++, e.g. "void(...);" | Argyrios Kyrtzidis |
2008-10-05 | Handle ambiguities between expressions and type-ids that occur inside parenth... | Argyrios Kyrtzidis |
2008-10-03 | Remove a FIXME. | Daniel Dunbar |
2008-10-03 | Pass postfix attributes to ActOnFields. | Daniel Dunbar |
2008-09-22 | Fix http://llvm.org/bugs/show_bug.cgi?id=2816. | Steve Naroff |
2008-09-11 | Fold Parser::ParseTag into Parser::ParseEnumSpecifier, as suggested in this p... | Argyrios Kyrtzidis |
2008-09-05 | Support "typeof unary-expression" (GNU C++ extension). | Argyrios Kyrtzidis |
2008-08-28 | Fix Parser::ParseDeclaratorInternal(): add langopts test when recognizing blo... | Steve Naroff |
2008-08-27 | First wave of changes to support "blocks" (an extension to C). | Steve Naroff |
2008-08-16 | Set the SourceRange ending of DeclSpec, when Parser::ParseTypeofSpecifier fin... | Argyrios Kyrtzidis |
2008-08-11 | More #include cleaning | Daniel Dunbar |