Age | Commit message (Expand) | Author |
2010-10-21 | Teach the C++ simple-type-specifier parser and tentative parses about | Douglas Gregor |
2010-10-08 | When we encounter a '==' in a context expecting a '=', assume the user made a... | Argyrios Kyrtzidis |
2010-09-09 | Eliminate the comma locations from all of the Sema routines that deal | Douglas Gregor |
2010-09-09 | Add proper type-source information to UnaryTypeTraitExpr, including | Douglas Gregor |
2010-09-08 | Fix a few minor issues with parsing and semantic analysis of C++ | Douglas Gregor |
2010-09-08 | Microsoft's __uuidof operator implementation part 1. | Francois Pichet |
2010-09-08 | Provide proper type-source location information for | Douglas Gregor |
2010-08-27 | Propagate whether an id-expression is the immediate argument of | John McCall |
2010-08-26 | One who seeks knowledge learns something new every day. | John McCall |
2010-08-24 | OwningExprResult -> ExprResult. This patch brought to you by | John McCall |
2010-08-24 | Abstract out passing around types and kill off ActionBase. | John McCall |
2010-08-23 | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall |
2010-08-23 | Push DeclGroupRefs and TemplateNames in an opaque but type-safe way | John McCall |
2010-08-23 | Sundry incremental steps towards killing off Action. | John McCall |
2010-08-21 | DeclPtrTy -> Decl * | John McCall |
2010-08-20 | Another step in the process of making the parser depend on Sema: | John McCall |
2010-08-11 | Once code completion has completed, pass a "completion context" on to | Douglas Gregor |
2010-08-06 | Template keyword should not be ignored building a QualifiedTemplateName. | Abramo Bagnara |
2010-07-13 | Downgrade the "when type is in parentheses, array cannot have dynamic | Douglas Gregor |
2010-07-02 | Move the "current scope" state from the Parser into Action. This | Douglas Gregor |
2010-06-22 | Fix PR7180. | Argyrios Kyrtzidis |
2010-06-16 | When we see a 'template' disambiguator that marks the next identifier | Douglas Gregor |
2010-06-16 | Fix the recently-added warning about 'typename' and 'template' | Douglas Gregor |
2010-06-02 | Fix compiler warning about to false -> pointer conversion; patch by Dimitry A... | Daniel Dunbar |
2010-05-25 | Improve code completion in failure cases in two ways: | Douglas Gregor |
2010-05-21 | Improve recovery when we see a dependent template name that is missing | Douglas Gregor |
2010-05-21 | Improve parser recovery when we encounter a dependent template name | Douglas Gregor |
2010-05-06 | Rework our handling of temporary objects within the conditions of | Douglas Gregor |
2010-05-05 | Support for 'template' as a disambiguator (PR7030) | Douglas Gregor |
2010-04-23 | Make Parser::ConsumeAndStoreUntil() more consistent with Parser::SkipUntil(). | Argyrios Kyrtzidis |
2010-04-21 | Implement parsing for message sends in Objective-C++. Message sends in | Douglas Gregor |
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 |