Age | Commit message (Expand) | Author |
2009-11-03 | Remove a bunch of #if 0'd code made irrelevant by the latest ParseUnqualified... | 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-10-25 | simplify Sema::getTypeName a bit: if control gets out of the switch, | Chris Lattner |
2009-10-25 | In objc mode, every identifier in a cast expression was using doing a | Chris Lattner |
2009-10-23 | Diagnose misuse of '.*' and '->*' operators during parse | Fariborz Jahanian |
2009-10-19 | Parse a simple-template-id following a '~' when calling a destructor, e.g., | Douglas Gregor |
2009-10-13 | Pass the right SourceLocation to Actions.ActOnOverloadedOperatorReferenceExpr... | Anders Carlsson |
2009-09-22 | Implement code completion within a function call, triggered after the | Douglas Gregor |
2009-09-21 | Code completion for ordinary names when we're starting a declaration, express... | 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-04 | If a destructor is referenced or a pseudo-destructor expression is | Douglas Gregor |
2009-09-02 | Rewrite of our handling of name lookup in C++ member access expressions, e.g., | Douglas Gregor |
2009-08-31 | Add parsing for references to member function templates with explicit | Douglas Gregor |
2009-08-31 | Support explicit C++ member operator syntax, from James Porter! | Douglas Gregor |
2009-08-26 | Address some of Doug's comments. | Anders Carlsson |
2009-08-25 | Parsing of pseudo-destructors. | Anders Carlsson |
2009-08-19 | Keep track of the right paren ')' source location in a function declarator. | Argyrios Kyrtzidis |
2009-08-15 | Implement __is_empty. Patch by Sean Hunt. | Eli Friedman |
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-06 | Support nested-name-specifiers for C++ member access expressions, e.g., | Douglas Gregor |
2009-07-23 | This patch fixes the implementations of the __has_trivial_destructor | Douglas Gregor |
2009-07-14 | Basic support for C++0x unicode types. Support for literals will follow in a... | Alisdair Meredith |
2009-06-30 | Preliminary parsing and ASTs for template-ids that refer to function | Douglas Gregor |
2009-06-27 | Fix the parser error hanlding for __builtin_offsetof to actually print | Eli Friedman |
2009-06-22 | Rework the way we track which declarations are "used" during | Douglas Gregor |
2009-06-19 | Keep track of when declarations are "used" according to C and | Douglas Gregor |
2009-06-11 | PR4364: fix parsing 'typename' in an expression. | Eli Friedman |
2009-05-31 | Disallow exception specs on typedefs. | Sebastian Redl |
2009-05-29 | Reject incomplete types in exception specs. | Sebastian Redl |
2009-05-22 | Handle correctly a very ugly part of the C++ syntax. We cannot disambiguate b... | Argyrios Kyrtzidis |
2009-05-22 | Factor the compound literal parsing out from ParseParenExpression and into a ... | Argyrios Kyrtzidis |
2009-05-22 | Modification to ParseParenExpression. | Argyrios Kyrtzidis |
2009-05-22 | Refactor the common code of 'ParseTypeofSpecifier' and 'ParseSizeofAlignofExp... | Argyrios Kyrtzidis |
2009-05-21 | Merge the ASTVector and ASTOwningVector templates, since they offered | Douglas Gregor |
2009-05-21 | Use v.data() instead of &v[0] when SmallVector v might be empty. | Jay Foad |
2009-05-16 | Make the RAII extension warning silencing for __extension__ a bit | Eli Friedman |
2009-05-16 | Fixup __extension__ i = 1 parsing. Thanks Eli! | Mike Stump |
2009-05-15 | Fixup parsing for (throw,throw) and __extension__ throw 1. | Mike Stump |
2009-05-10 | Implement C++0x nullptr. | Sebastian Redl |
2009-04-29 | Remove extra line. | Mike Stump |
2009-04-29 | Fixup Sema and CodeGen for block literal attributes when the return | Mike Stump |
2009-04-29 | Sema and CodeGen support for attributes on blocks. Radar 6441502 | Mike Stump |
2009-04-29 | Have the parser communicate the exception specification to the action. | Sebastian Redl |
2009-04-25 | This is a pretty big cleanup for how invalid decl/type are handle. | Chris Lattner |
2009-04-18 | fix two error paths out of ParseBlockLiteralExpression to | Chris Lattner |