Age | Commit message (Expand) | Author |
2010-10-11 | Add parsing support for Microsoft attributes. MS attributes will just be skip... | Francois Pichet |
2010-10-08 | When we encounter a '==' in a context expecting a '=', assume the user made a... | Argyrios Kyrtzidis |
2010-09-28 | vla expressions used in __typeof__ must be evaluated. | Fariborz Jahanian |
2010-09-15 | Implement bracket insertion for Objective-C instance message sends as | Douglas Gregor |
2010-09-07 | Improve error recovery when we see ':' and expect a ';'. | John McCall |
2010-09-07 | Improve recovery when there is a stray ']' or ')' before the ';' at | Douglas Gregor |
2010-08-31 | Enable inline namespaces in C++03 as an extension. | Sebastian Redl |
2010-08-27 | Parser support for inline namespaces | Sebastian Redl |
2010-08-26 | One who seeks knowledge learns something new every day. | John McCall |
2010-08-25 | Initialize the translation-unit scope before lexing the first | Douglas Gregor |
2010-08-25 | Introduce a preprocessor code-completion hook for contexts where we | Douglas Gregor |
2010-08-24 | Implement code completion for preprocessor expressions and in macro | Douglas Gregor |
2010-08-24 | Implement preprocessor code completion where a macro name is expected, | Douglas Gregor |
2010-08-24 | Introduce basic code-completion support for preprocessor directives, | Douglas Gregor |
2010-08-24 | Parse all kinds of declarations as part of a linkage-specification, | Douglas Gregor |
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-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-08-05 | Implement #pragma GCC visibility. | Eli Friedman |
2010-07-31 | Parser: Add support for #pragma align, which is just another spelling of #pragma | Daniel Dunbar |
2010-07-13 | Modify the pragma handlers to accept and use StringRefs instead of Identifier... | Argyrios Kyrtzidis |
2010-07-12 | revert a hunk of code that Argiris added in r106213, which is the | Chris Lattner |
2010-07-11 | Fix PR7617 by not entering ParseFunctionDefinition when | Chris Lattner |
2010-07-11 | add a const qualifier, refactor some code. | Chris Lattner |
2010-07-02 | Move the "current scope" state from the Parser into Action. This | Douglas Gregor |
2010-06-17 | Make sure parens/braces/brackets are correctly balanced. | Argyrios Kyrtzidis |
2010-06-16 | Fix the recently-added warning about 'typename' and 'template' | Douglas Gregor |
2010-05-26 | Parse: Add support for '#pragma options align'. | Daniel Dunbar |
2010-05-25 | Improve code completion in failure cases in two ways: | Douglas Gregor |
2010-05-21 | Improve parser recovery when we encounter a dependent template name | Douglas Gregor |
2010-05-21 | Propagate access specifiers to anonymous union members nested within classes. | John McCall |
2010-04-10 | Diagnose misordered initializers in constructor templates immediately instead of | John McCall |
2010-04-07 | Fix some redundant errors by changing CXXScopeSpec::isSet calls into | Jeffrey Yasskin |
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-03-19 | Remove the capture, serialization, and deserialization of comment | Douglas Gregor |
2010-03-01 | Unbreak the build | Douglas Gregor |
2010-03-01 | Keep an explicit stack of function and block scopes, each element of | Douglas Gregor |
2010-02-26 | Fix an assertion-on-error during tentative constructor parsing by | John McCall |
2010-02-23 | Retain attributes for K&R style parameter declarations. | Richard Pennington |
2010-02-11 | Clean up ownership of 'AttributeList' objects in Parser. Apparently | Ted Kremenek |
2010-02-08 | When placing an annotation token over an existing annotation token, make sure... | Sebastian Redl |
2010-02-07 | Fix assertion failure when parsing linkage specifications (PR5921), | Douglas Gregor |
2010-02-05 | First stage of adding AltiVec support | John Thompson |
2010-01-25 | Fixit to remove 'volatile' in file-scope 'asm volatile'. | John McCall |