| Commit message (Expand) | Author | Age | Files | Lines |
* | Refactor how we collect attributes during parsing, and add slots for attributes | John McCall | 2010-12-24 | 1 | -32/+24 |
* | Added ParenType type node. | Abramo Bagnara | 2010-12-10 | 1 | -9/+5 |
* | Not content to implement just "extern" explicit template | Douglas Gregor | 2010-12-01 | 1 | -4/+30 |
* | Refactoring. | Argyrios Kyrtzidis | 2010-11-19 | 1 | -2/+1 |
* | Refactoring of Diagnostic class. | Argyrios Kyrtzidis | 2010-11-18 | 1 | -1/+1 |
* | Add parsing support for Microsoft attributes. MS attributes will just be skip... | Francois Pichet | 2010-10-11 | 1 | -0/+3 |
* | When we encounter a '==' in a context expecting a '=', assume the user made a... | Argyrios Kyrtzidis | 2010-10-08 | 1 | -0/+14 |
* | vla expressions used in __typeof__ must be evaluated. | Fariborz Jahanian | 2010-09-28 | 1 | -2/+4 |
* | Implement bracket insertion for Objective-C instance message sends as | Douglas Gregor | 2010-09-15 | 1 | -2/+2 |
* | Improve error recovery when we see ':' and expect a ';'. | John McCall | 2010-09-07 | 1 | -0/+20 |
* | Improve recovery when there is a stray ']' or ')' before the ';' at | Douglas Gregor | 2010-09-07 | 1 | -0/+19 |
* | Enable inline namespaces in C++03 as an extension. | Sebastian Redl | 2010-08-31 | 1 | -2/+2 |
* | Parser support for inline namespaces | Sebastian Redl | 2010-08-27 | 1 | -3/+11 |
* | One who seeks knowledge learns something new every day. | John McCall | 2010-08-26 | 1 | -7/+7 |
* | Initialize the translation-unit scope before lexing the first | Douglas Gregor | 2010-08-25 | 1 | -4/+4 |
* | Introduce a preprocessor code-completion hook for contexts where we | Douglas Gregor | 2010-08-25 | 1 | -0/+4 |
* | Implement code completion for preprocessor expressions and in macro | Douglas Gregor | 2010-08-24 | 1 | -2/+13 |
* | Implement preprocessor code completion where a macro name is expected, | Douglas Gregor | 2010-08-24 | 1 | -0/+4 |
* | Introduce basic code-completion support for preprocessor directives, | Douglas Gregor | 2010-08-24 | 1 | -0/+13 |
* | Parse all kinds of declarations as part of a linkage-specification, | Douglas Gregor | 2010-08-24 | 1 | -2/+6 |
* | OwningExprResult -> ExprResult. This patch brought to you by | John McCall | 2010-08-24 | 1 | -5/+5 |
* | Abstract out passing around types and kill off ActionBase. | John McCall | 2010-08-24 | 1 | -9/+11 |
* | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall | 2010-08-23 | 1 | -2/+2 |
* | DeclPtrTy -> Decl * | John McCall | 2010-08-21 | 1 | -9/+9 |
* | Another step in the process of making the parser depend on Sema: | John McCall | 2010-08-20 | 1 | -3/+3 |
* | Once code completion has completed, pass a "completion context" on to | Douglas Gregor | 2010-08-11 | 1 | -5/+5 |
* | Template keyword should not be ignored building a QualifiedTemplateName. | Abramo Bagnara | 2010-08-06 | 1 | -3/+4 |
* | Implement #pragma GCC visibility. | Eli Friedman | 2010-08-05 | 1 | -0/+5 |
* | Parser: Add support for #pragma align, which is just another spelling of #pragma | Daniel Dunbar | 2010-07-31 | 1 | -0/+5 |
* | Modify the pragma handlers to accept and use StringRefs instead of Identifier... | Argyrios Kyrtzidis | 2010-07-13 | 1 | -21/+15 |
* | revert a hunk of code that Argiris added in r106213, which is the | Chris Lattner | 2010-07-12 | 1 | -10/+1 |
* | Fix PR7617 by not entering ParseFunctionDefinition when | Chris Lattner | 2010-07-11 | 1 | -4/+9 |
* | add a const qualifier, refactor some code. | Chris Lattner | 2010-07-11 | 1 | -1/+1 |
* | Move the "current scope" state from the Parser into Action. This | Douglas Gregor | 2010-07-02 | 1 | -29/+30 |
* | Make sure parens/braces/brackets are correctly balanced. | Argyrios Kyrtzidis | 2010-06-17 | 1 | -1/+12 |
* | Fix the recently-added warning about 'typename' and 'template' | Douglas Gregor | 2010-06-16 | 1 | -2/+4 |
* | Parse: Add support for '#pragma options align'. | Daniel Dunbar | 2010-05-26 | 1 | -0/+7 |
* | Improve code completion in failure cases in two ways: | Douglas Gregor | 2010-05-25 | 1 | -3/+23 |
* | Improve parser recovery when we encounter a dependent template name | Douglas Gregor | 2010-05-21 | 1 | -1/+2 |
* | Propagate access specifiers to anonymous union members nested within classes. | John McCall | 2010-05-21 | 1 | -1/+1 |
* | Diagnose misordered initializers in constructor templates immediately instead of | John McCall | 2010-04-10 | 1 | -2/+8 |
* | Fix some redundant errors by changing CXXScopeSpec::isSet calls into | Jeffrey Yasskin | 2010-04-07 | 1 | -1/+1 |
* | Reinstate my CodeModificationHint -> FixItHint renaming patch, without | Douglas Gregor | 2010-03-31 | 1 | -5/+5 |
* | Revert r100008, which inexplicably breaks the clang-i686-darwin10 builder | Douglas Gregor | 2010-03-31 | 1 | -5/+5 |
* | Rename CodeModificationHint to FixItHint, since we've been using the | Douglas Gregor | 2010-03-31 | 1 | -5/+5 |
* | Remove the capture, serialization, and deserialization of comment | Douglas Gregor | 2010-03-19 | 1 | -18/+0 |
* | Unbreak the build | Douglas Gregor | 2010-03-01 | 1 | -1/+1 |
* | Keep an explicit stack of function and block scopes, each element of | Douglas Gregor | 2010-03-01 | 1 | -0/+1 |
* | Fix an assertion-on-error during tentative constructor parsing by | John McCall | 2010-02-26 | 1 | -20/+20 |
* | Retain attributes for K&R style parameter declarations. | Richard Pennington | 2010-02-23 | 1 | -4/+5 |