Age | Commit message (Expand) | Author |
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 |
2009-07-14 | Basic support for C++0x unicode types. Support for literals will follow in a... | Alisdair Meredith |
2009-07-06 | Keep track of the Expr used to describe the size of an array type, | Douglas Gregor |
2009-06-30 | Preliminary parsing and ASTs for template-ids that refer to function | Douglas Gregor |
2009-06-26 | fix PR4452, a crash on invalid. The error recovery is still terrible in this... | Chris Lattner |
2009-06-26 | rearrange more code, this avoids a token lookahead for foo< | Chris Lattner |
2009-06-26 | move some code around, no functionality change. | Chris Lattner |
2009-06-26 | simplify some code. | Chris Lattner |
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-05-25 | PR4122: Tweak the ambiguity handling to handle (S())() correctly. I've | Eli Friedman |
2009-05-22 | The disambiguation process for ambiguous paren expressions is not "side effec... | Argyrios Kyrtzidis |
2009-05-22 | Some minor comments modifications. | Argyrios Kyrtzidis |
2009-05-22 | Handle correctly a very ugly part of the C++ syntax. We cannot disambiguate b... | Argyrios Kyrtzidis |
2009-05-22 | Remove ParseSimpleParenExpression. | 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-14 | Implement explicit instantiations of member classes of class templates, e.g., | Douglas Gregor |
2009-04-25 | This is a pretty big cleanup for how invalid decl/type are handle. | Chris Lattner |
2009-04-01 | Add code modification hints to various parsing-related diagnostics. | Douglas Gregor |
2009-04-01 | Make parsing a semantic analysis a little more robust following Sema | Douglas Gregor |
2009-03-31 | Parsing and AST representation for dependent template names that occur | Douglas Gregor |
2009-03-30 | Improve the representation of template names in the AST. This | Douglas Gregor |
2009-03-28 | Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for a | Chris Lattner |
2009-03-26 | Simplify CXXScopeSpec a lot. No more weird SmallVector-like hacks here | Douglas Gregor |
2009-03-19 | Introduce a representation for types that we referred to via a | Douglas Gregor |
2009-03-15 | Convert a bunch of actions to smart pointers, and also bring PrintParserCallb... | Sebastian Redl |
2009-02-25 | Implement parsing of nested-name-specifiers that involve template-ids, e.g., | Douglas Gregor |