| Age | Commit message (Expand) | Author |
| 2009-01-06 | rename tok::annot_qualtypename -> tok::annot_typename, which is both | Chris Lattner |
| 2009-01-05 | PODness and Type Traits | Sebastian Redl |
| 2009-01-05 | remove optimization to avoid looking ahead for cases like ::foo. This | Chris Lattner |
| 2009-01-05 | TryAnnotateTypeOrScopeToken and TryAnnotateCXXScopeToken can | Chris Lattner |
| 2009-01-04 | code simplification | Chris Lattner |
| 2009-01-04 | my previous patch caused sema to drop the global qualifier, make | Chris Lattner |
| 2009-01-04 | sink the call to TryAnnotateTypeOrScopeToken in | Chris Lattner |
| 2009-01-04 | simplify control flow by removing a goto. | Chris Lattner |
| 2009-01-04 | eliminate lookahead when parsing ::new / ::delete. | Chris Lattner |
| 2008-12-23 | Don't explicitly represent OverloadedFunctionDecls within | Douglas Gregor |
| 2008-12-13 | Convert remaining expression parsers to smart pointers. Now on to the Action ... | Sebastian Redl |
| 2008-12-12 | fix a buggy fall through that caused a crash-on-invalid. rdar://6248081 | Chris Lattner |
| 2008-12-12 | minor refactoring of ParseParenExpression | Chris Lattner |
| 2008-12-11 | Convert a big bunch of expression parsers to use smart pointers. | Sebastian Redl |
| 2008-12-11 | Convert some more expression parsers to use smart pointers. | Sebastian Redl |
| 2008-12-11 | Convert selected expression parsers to use smart pointers. | Sebastian Redl |
| 2008-12-11 | Convert a number of statement parsers to smart pointers. | Sebastian Redl |
| 2008-12-10 | Use a scoped object to manage entry/exit from a parser scope rather than expl... | Douglas Gregor |
| 2008-12-10 | Modify the move emulation according to the excellent design of Howard Hinnant... | Sebastian Redl |
| 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-06 | Add support for calls to dependent names within templates, e.g., | Douglas Gregor |
| 2008-12-02 | Add better comments to ::new parsing. Thanks to Doug for the review. | Sebastian Redl |
| 2008-12-02 | Make the parser handle ::new and ::delete correctly. | Sebastian Redl |
| 2008-11-29 | Implement the GNU __null extension | Douglas Gregor |
| 2008-11-26 | Add some comments. | Argyrios Kyrtzidis |
| 2008-11-25 | Use RAII objects to ensure proper destruction of expression and statement AST... | Sebastian Redl |
| 2008-11-23 | make the 'to match this' diagnostic a note. | Chris Lattner |
| 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 | Support overloading of the subscript operator[], including support for | Douglas Gregor |
| 2008-11-19 | Fix <rdar://problem/6150376> [sema] crash on invalid message send. | Steve Naroff |
| 2008-11-19 | Added operator overloading for unary operators, post-increment, and | Douglas Gregor |
| 2008-11-19 | remove uses of IdentifierInfo::getName() | Chris Lattner |
| 2008-11-18 | Change a couple of the Parser::Diag methods to return DiagnosticInfo | Chris Lattner |
| 2008-11-11 | Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expr... | Sebastian Redl |
| 2008-11-11 | Implement C++ 'typeid' parsing and sema. | Sebastian Redl |
| 2008-11-08 | Implement support for C++ nested-name-specifiers ('foo::bar::x') in the Parse... | Argyrios Kyrtzidis |
| 2008-11-06 | Initial, rudimentary implementation of operator overloading for binary | Douglas Gregor |
| 2008-11-06 | Parsing, ASTs, and semantic analysis for the declaration of overloaded | Douglas Gregor |
| 2008-11-06 | Add the remaining C++0x keywords | 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-10 | Final phase of converting BlockDecls over to DeclContext. This is unfortunate... | Steve Naroff |
| 2008-10-05 | Handle ambiguities between expressions and type-ids that occur inside parenth... | Argyrios Kyrtzidis |
| 2008-09-16 | Remove support for BlockExprExpr. For example... | Steve Naroff |
| 2008-08-28 | Add parser/action support for block literal expressions. | Steve Naroff |
| 2008-08-22 | Add support for C++'s "type-specifier ( expression-list )" expression: | Argyrios Kyrtzidis |
| 2008-08-20 | Fix a minor crash-on-invalid. | Eli Friedman |
| 2008-08-18 | "Remove the 'else' since the code is fallthrough after it." - suggestion by C... | Argyrios Kyrtzidis |