Age | Commit message (Expand) | Author |
2009-03-05 | Simplify the interface to ParseFunctionStatementBody to not take | Chris Lattner |
2009-02-27 | cleanup | Chris Lattner |
2009-02-27 | Clean up and document code modification hints. | Douglas Gregor |
2009-02-27 | change a diagnostic message from something pedantically correct but | Chris Lattner |
2009-02-26 | Introduce code modification hints into the diagnostics system. When we | Douglas Gregor |
2009-02-25 | Implement parsing of nested-name-specifiers that involve template-ids, e.g., | Douglas Gregor |
2009-02-09 | Start processing template-ids as types when the template-name refers | Douglas Gregor |
2009-02-09 | Implement Declarator::getSourceRange(). | Sebastian Redl |
2009-02-05 | Put the invalid flag of OwningResult into the Action pointer. | Sebastian Redl |
2009-02-04 | Basic representation of C++ class templates, from Andrew Sutton. | Douglas Gregor |
2009-02-04 | Diagnose ambiguities in getTypeName. Fixes http://llvm.org/bugs/show_bug.cgi?... | Douglas Gregor |
2009-01-29 | move library-specific diagnostic headers into library private dirs. Reduce | Chris Lattner |
2009-01-28 | Name change (isTypeName->getTypeName). | Steve Naroff |
2009-01-27 | Split the single monolithic DiagnosticKinds.def file into one | Chris Lattner |
2009-01-23 | Handle any undeclared parameters in a K&R-style function with a | Douglas Gregor |
2009-01-18 | Rename move_convert to move_arg and move_res. The new names are less misleadi... | Sebastian Redl |
2009-01-09 | When we see a reference to a struct, class, or union like "struct X" | Douglas Gregor |
2009-01-06 | rename MaybeParseCXXScopeSpecifier -> ParseOptionalCXXScopeSpecifier and | Chris Lattner |
2009-01-06 | rename tok::annot_qualtypename -> tok::annot_typename, which is both | Chris Lattner |
2009-01-05 | remove optimization to avoid looking ahead for cases like ::foo. This | Chris Lattner |
2009-01-05 | Rearrange some code in TryAnnotateTypeOrScopeToken to make it | Chris Lattner |
2009-01-05 | TryAnnotateTypeOrScopeToken and TryAnnotateCXXScopeToken can | Chris Lattner |
2009-01-05 | ParseCXXSimpleTypeSpecifier can only be called on things that are | Chris Lattner |
2009-01-05 | sink a call to TryAnnotateCXXScopeToken down into the | Chris Lattner |
2009-01-04 | my previous patch caused sema to drop the global qualifier, make | Chris Lattner |
2009-01-04 | use early exits to reduce nesting. | Chris Lattner |
2008-12-30 | Parser support for C++ using directives, from Piotr Rak | Douglas Gregor |
2008-12-24 | Keep track of template arguments when we parse them. Right now, we don't actu... | Douglas Gregor |
2008-12-18 | Ultrasimplistic sketch for the parsing of C++ template-ids. This won't | Douglas Gregor |
2008-12-13 | Some utilities for using the smart pointers in Actions, especially Sema. Conv... | Sebastian Redl |
2008-12-11 | Convert a big bunch of 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 | Lay the groundwork for converting the entire parser-sema chain to smart point... | Sebastian Redl |
2008-12-09 | Consistently use smart pointers for stmt and expr nodes in parser local varia... | Sebastian Redl |
2008-12-08 | Fix PR3172: if we see an eof or } at the top level, reject it. | Chris Lattner |
2008-12-05 | Representation of template type parameters and non-type template | Douglas Gregor |
2008-12-01 | Basic support for parsing templates, from Andrew Sutton | Douglas Gregor |
2008-12-01 | Improve error recovery when parsing a function definition fails | Douglas Gregor |
2008-11-26 | Add some comments. | Argyrios Kyrtzidis |
2008-11-26 | Implement some suggestions by Daniel: | Argyrios Kyrtzidis |
2008-11-24 | Remove an empty if and add a reminder for when we implement C++ try-catch. | Sebastian Redl |
2008-11-23 | make the 'to match this' diagnostic a note. | Chris Lattner |
2008-11-22 | Split the DiagnosticInfo class into two disjoint classes: | Chris Lattner |
2008-11-21 | Tiny fix to the parsing of linkage-specifications | Douglas Gregor |
2008-11-19 | Fix this: | Argyrios Kyrtzidis |
2008-11-19 | remove uses of IdentifierInfo::getName() | Chris Lattner |
2008-11-18 | remove the last couple obsolete forms of Parser::Diag. | Chris Lattner |