Age | Commit message (Expand) | Author |
2010-03-31 | Reinstate my CodeModificationHint -> FixItHint renaming patch, without | Douglas Gregor |
2010-03-31 | Revert r100008, which inexplicably breaks the clang-i686-darwin10 builder | Douglas Gregor |
2010-03-31 | Rename CodeModificationHint to FixItHint, since we've been using the | Douglas Gregor |
2010-02-26 | Fix an assertion-on-error during tentative constructor parsing by | John McCall |
2010-02-25 | Restore the invariant that a nested-name-specifier can only contain | Douglas Gregor |
2010-02-24 | Make sure that we finish the DeclSpec when parsing a C++ | Douglas Gregor |
2010-02-24 | ActOnPseudoDestructorExpr now performs all semantic analysis for | Douglas Gregor |
2010-02-24 | Rework parsing of pseudo-destructor expressions and explicit | Douglas Gregor |
2010-02-21 | Implement support for parsing pseudo-destructor expression with a nested-name... | Douglas Gregor |
2010-02-16 | Improve parsing and instantiation of destructor names, so that we can | Douglas Gregor |
2010-02-03 | In some contexts, type declarations cannot occur. Pass this information down ... | Sebastian Redl |
2010-01-13 | Reimplement constructor declarator parsing to cope with template-ids | Douglas Gregor |
2010-01-11 | Eliminate an embarrassing performance regression in C/ObjC, where we | Douglas Gregor |
2010-01-10 | Improve code completion by introducing patterns for the various C and | Douglas Gregor |
2009-12-10 | refactor the 'ColonIsSacred' argument to ParseOptionalCXXScopeSpecifier | Chris Lattner |
2009-12-07 | reapply my patch for PR4451, which improves diagnostics for :: vs : confusion. | Chris Lattner |
2009-12-06 | revert my previous patch, it is breaking something and I don't have time | Chris Lattner |
2009-12-06 | implement PR4451, improving error recovery for a mistaken : where a :: was | Chris Lattner |
2009-12-03 | Introduce the notion of literal types, as specified in C++0x. | Sebastian Redl |
2009-11-29 | Add DeclarationName support for C++0x operator literals. They should now work as | Sean Hunt |
2009-11-28 | Fix test and handle IK_LiteralOperatorId in a few more places. | Sean Hunt |
2009-11-28 | Add Parser support for C++0x literal operators ('operator "" i'). | Sean Hunt |
2009-11-25 | Eliminate CXXConditionDeclExpr with extreme prejudice. | Douglas Gregor |
2009-11-22 | If a C++ qualified id is followed by a postfix suffix, it is never the direct | John McCall |
2009-11-21 | Added rudimentary C++0x attribute support. | Sean Hunt |
2009-11-20 | Cope with extraneous "template" keyword when providing an out-of-line | Douglas Gregor |
2009-11-20 | Implement C++ [basic.lookup.classref]p3, which states how the type | Douglas Gregor |
2009-11-11 | Fix speculative parsing of dependent template names in | Douglas Gregor |
2009-11-10 | Improve parsing of template arguments to lay the foundation for | Douglas Gregor |
2009-11-06 | Improve recovery when we fail to parse the operand of a C++ named cast. Fixes... | Douglas Gregor |
2009-11-04 | Eliminate the "old" ways of parsing operator-function-ids and | Douglas Gregor |
2009-11-04 | Implement support for parsing dependent template-ids that refer to | Douglas Gregor |
2009-11-03 | Parsing and semantic analysis for template-ids that name overloaded | Douglas Gregor |
2009-11-03 | Tweak some comments about unqualified-id and id-expression parsing. No functi... | Douglas Gregor |
2009-11-03 | Replace the code that parses member access expressions after "." or | Douglas Gregor |
2009-11-03 | Use ParseUnqualifiedId when parsing id-expressions. This eliminates | Douglas Gregor |
2009-11-03 | Introduce a new class, UnqualifiedId, that provides a parsed | Douglas Gregor |
2009-10-22 | When building and instantiating a template-id reference expression, such as | Douglas Gregor |
2009-09-18 | C++ code completion after the "operator" keyword. Provide overloaded | Douglas Gregor |
2009-09-17 | Initial implementation of a code-completion interface in Clang. In | Douglas Gregor |
2009-09-09 | Remove tabs, and whitespace cleanups. | Mike Stump |
2009-09-09 | Initial stab at implement dependent member references to member | Douglas Gregor |
2009-09-02 | Rewrite of our handling of name lookup in C++ member access expressions, e.g., | Douglas Gregor |
2009-08-29 | Fix a couple issues with parsing invalid nested-name-specifiers. | Eli Friedman |
2009-08-25 | Improve support for out-of-line definitions of nested templates and | Douglas Gregor |
2009-08-10 | Take 2 on AltiVec-style vector initializers. | Nate Begeman |
2009-08-10 | Revert r78535, it is causing a number of failures to build projects. | Daniel Dunbar |
2009-08-09 | AltiVec-style vector initializer syntax, vec4 a = (vec4)(a, b, c, d); | Nate Begeman |
2009-08-03 | Refactor methods on DeclSpec to take a diagnostic& parameter, and reflect this | John McCall |
2009-07-29 | Make functional-style casts emit correct messages, and fix a crash-on-invalid. | Sebastian Redl |