Age | Commit message (Expand) | Author |
2009-11-21 | Added rudimentary C++0x attribute support. | Sean Hunt |
2009-11-10 | Improve parsing of template arguments to lay the foundation for | Douglas Gregor |
2009-11-05 | Parse C++0x constexpr. Test case follows when this does something useful. | Sebastian Redl |
2009-11-04 | Change our basic strategy for avoiding deprecation warnings when the decl use | John McCall |
2009-11-03 | CFieldCallback doesn't need to create an ExtensionRAIIObject: it's actually | John McCall |
2009-11-03 | Replace the code that parses member access expressions after "." or | Douglas Gregor |
2009-11-03 | Reorganize the parsing of decl groups / function definitions so that | John McCall |
2009-11-03 | Switch ParseStructDeclaration to a callback-based API. This will make | John McCall |
2009-11-03 | Introduce a new class, UnqualifiedId, that provides a parsed | Douglas Gregor |
2009-10-13 | Improve diagnostics when the parser encounters a declarator with an | Douglas Gregor |
2009-09-29 | Keep protocol source locations when parsing protocol references. | Argyrios Kyrtzidis |
2009-09-28 | Parse a C++ scope specifier followed by a "typename" annotation token as a ty... | Douglas Gregor |
2009-09-25 | Declarators can now properly represent template-ids, e.g., for | Douglas Gregor |
2009-09-25 | WIP implementation of explicit instantiation of function templates, | Douglas Gregor |
2009-09-22 | In C++, a variadic function does not need an ellipsis prior to the comma. Par... | Douglas Gregor |
2009-09-21 | Code completion for ordinary names when we're starting a declaration, express... | Douglas Gregor |
2009-09-18 | Implement code completion for tags, e.g., code completion after "enum" | Douglas Gregor |
2009-09-11 | Support elaborated dependent types and diagnose tag mismatches. | John McCall |
2009-09-09 | Remove tabs, and whitespace cleanups. | Mike Stump |
2009-09-02 | Rewrite of our handling of name lookup in C++ member access expressions, e.g., | Douglas Gregor |
2009-08-26 | When we know that we are parsing a class-name, implicitly construct a | Douglas Gregor |
2009-08-26 | Fix bug in __extension__ handling for declarations, from Abramo | Douglas Gregor |
2009-08-25 | Improve support for out-of-line definitions of nested templates and | Douglas Gregor |
2009-08-21 | Introduce support for constructor templates, which can now be declared | Douglas Gregor |
2009-08-19 | Keep track of the right paren ')' source location in a function declarator. | Argyrios Kyrtzidis |
2009-08-16 | AddInitializerToDecl can't take a FullExprArg. Make it take an ExprArg, and c... | Anders Carlsson |
2009-08-08 | Patch should implement packed enums - PR4098. Credit to Anders Johnsen. | Edward O'Callaghan |
2009-08-06 | First pass at friend semantics. | John McCall |
2009-08-03 | Refactor methods on DeclSpec to take a diagnostic& parameter, and reflect this | John McCall |
2009-07-31 | Rename Action::TagKind to Action::TagUseKind, which removes both a misnomer | John McCall |
2009-07-31 | sp. | John McCall |
2009-07-23 | Clean up the ActOnTag action, so that there is only a single entry | Douglas Gregor |
2009-07-20 | Issue a more descriptive diagnostics when mis-declaring | Fariborz Jahanian |
2009-07-14 | Basic support for C++0x unicode types. Support for literals will follow in a... | Alisdair Meredith |
2009-07-14 | Pass the right brace SourceLocation from the Parser to the TagDecls. | Argyrios Kyrtzidis |
2009-07-11 | Implement more of C++0x 'auto'. A variable with an auto type specifier must h... | Anders Carlsson |
2009-07-06 | Parsing fix for out-of-line constructors, from Piotr Rak | Douglas Gregor |
2009-07-06 | Keep track of the Expr used to describe the size of an array type, | Douglas Gregor |
2009-06-30 | Fix: <rdar://problem/7021553> clang -fsyntax-only crashes (in ParseDeclaratio... | Ted Kremenek |
2009-06-26 | Fix test. | Anders Carlsson |
2009-06-26 | Implement enough of the 'auto' keyword so we can claim to support N2546. | Anders Carlsson |
2009-06-26 | OpenCL 1.0 support: attributes | Nate Begeman |
2009-06-24 | Parse the C++0x decltype specifier. | Anders Carlsson |
2009-06-23 | Start propagating template parameter lists to the right places to | Douglas Gregor |
2009-06-22 | Implement implicit instantiation of the member functions of a class template | Douglas Gregor |
2009-06-19 | Keep track of when declarations are "used" according to C and | Douglas Gregor |
2009-06-17 | Implement correct name lookup inside an initializer of a C++ class static dat... | Argyrios Kyrtzidis |
2009-06-12 | It's an error to use a function declared in a class definition as a default a... | Anders Carlsson |
2009-06-08 | Add more parser support for Microsoft extensions. | Eli Friedman |
2009-06-08 | Add real parsing for __declspec. It doesn't make much of a difference | Eli Friedman |