Age | Commit message (Expand) | Author |
2010-04-12 | tighten the check for cast of super to avoid rejecting valid code, | Chris Lattner |
2010-04-12 | fix a rejects-valid bug that I introduced, pointed out | Chris Lattner |
2010-04-12 | use pointer comparison instead of isStr | Chris Lattner |
2010-04-12 | fix a rejects-valid testcase involving super that I dreamt up. | Chris Lattner |
2010-04-11 | fix PR6811 by not parsing 'super' as a magic expression in | Chris Lattner |
2010-04-06 | Perform code-completion within ParseCastExpression, which handles, | 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 | 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-05 | When we're parsing an expression that may have looked like a | Douglas Gregor |
2010-02-05 | First stage of adding AltiVec support | John Thompson |
2010-01-10 | Improve code completion by introducing patterns for the various C and | Douglas Gregor |
2010-01-07 | When parsing an identifier as an expression in C++, only try to annotate it | John McCall |
2009-12-10 | If we enter parens, colons can become un-sacred, allowing us to emit | Chris Lattner |
2009-12-10 | fix a more evil case of : / :: confusion arising in ?:. | Chris Lattner |
2009-12-10 | rename ExtensionRAIIObject.h -> RAIIObjectsForParser.h | Chris Lattner |
2009-12-03 | Introduce the notion of literal types, as specified in C++0x. | Sebastian Redl |
2009-11-25 | Some fancy footwork to move the decision on how | Fariborz Jahanian |
2009-11-23 | Fix a recent regression probably caused by addition of altivec-style | Fariborz Jahanian |
2009-11-21 | Added rudimentary C++0x attribute support. | Sean Hunt |
2009-11-18 | This patch fixes a bug in misdiagnosing correct | Fariborz Jahanian |
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 |