| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Move the "current scope" state from the Parser into Action. This | Douglas Gregor | 2010-07-02 | 1 | -31/+31 |
* | Minor tweaks on doug's objc recovery patch: the caller | Chris Lattner | 2010-05-31 | 1 | -1/+8 |
* | When we see the a '[' in a postfix expression in Objective-C, perform | Douglas Gregor | 2010-05-31 | 1 | -0/+3 |
* | Improve parser recovery when we try to parse a call expression but the | Douglas Gregor | 2010-05-30 | 1 | -1/+8 |
* | Teach code completion to adjust its completion priorities based on the | Douglas Gregor | 2010-05-30 | 1 | -0/+8 |
* | When we've parsed a nested-name-specifier in a member access | Douglas Gregor | 2010-05-27 | 1 | -0/+2 |
* | Improve code completion in failure cases in two ways: | Douglas Gregor | 2010-05-25 | 1 | -5/+5 |
* | improve the fixit for the missing : error when parsing ?:. When | Chris Lattner | 2010-05-24 | 1 | -1/+22 |
* | When parsing a cast-expression that starts with a scope annotation, | Douglas Gregor | 2010-04-23 | 1 | -0/+8 |
* | Implement parsing for message sends in Objective-C++. Message sends in | Douglas Gregor | 2010-04-21 | 1 | -30/+7 |
* | Rework the Parser-Sema interaction for Objective-C message | Douglas Gregor | 2010-04-21 | 1 | -9/+9 |
* | fix the ?: fixit that ted added to recover properly. | Chris Lattner | 2010-04-20 | 1 | -5/+5 |
* | Add fixit hint for missing ':' in ternary expressions. | Ted Kremenek | 2010-04-12 | 1 | -1/+2 |
* | tighten the check for cast of super to avoid rejecting valid code, | Chris Lattner | 2010-04-12 | 1 | -1/+2 |
* | fix a rejects-valid bug that I introduced, pointed out | Chris Lattner | 2010-04-12 | 1 | -5/+5 |
* | use pointer comparison instead of isStr | Chris Lattner | 2010-04-12 | 1 | -3/+2 |
* | fix a rejects-valid testcase involving super that I dreamt up. | Chris Lattner | 2010-04-12 | 1 | -1/+3 |
* | fix PR6811 by not parsing 'super' as a magic expression in | Chris Lattner | 2010-04-11 | 1 | -4/+11 |
* | Perform code-completion within ParseCastExpression, which handles, | Douglas Gregor | 2010-04-06 | 1 | -1/+6 |
* | Fix an assertion-on-error during tentative constructor parsing by | John McCall | 2010-02-26 | 1 | -1/+5 |
* | Restore the invariant that a nested-name-specifier can only contain | Douglas Gregor | 2010-02-25 | 1 | -1/+1 |
* | Rework parsing of pseudo-destructor expressions and explicit | Douglas Gregor | 2010-02-24 | 1 | -5/+19 |
* | Implement support for parsing pseudo-destructor expression with a nested-name... | Douglas Gregor | 2010-02-21 | 1 | -1/+1 |
* | When we're parsing an expression that may have looked like a | Douglas Gregor | 2010-02-05 | 1 | -2/+38 |
* | First stage of adding AltiVec support | John Thompson | 2010-02-05 | 1 | -0/+1 |
* | Improve code completion by introducing patterns for the various C and | Douglas Gregor | 2010-01-10 | 1 | -5/+5 |
* | When parsing an identifier as an expression in C++, only try to annotate it | John McCall | 2010-01-07 | 1 | -3/+11 |
* | If we enter parens, colons can become un-sacred, allowing us to emit | Chris Lattner | 2009-12-10 | 1 | -3/+9 |
* | fix a more evil case of : / :: confusion arising in ?:. | Chris Lattner | 2009-12-10 | 1 | -0/+3 |
* | rename ExtensionRAIIObject.h -> RAIIObjectsForParser.h | Chris Lattner | 2009-12-10 | 1 | -1/+1 |
* | Introduce the notion of literal types, as specified in C++0x. | Sebastian Redl | 2009-12-03 | 1 | -0/+1 |
* | Some fancy footwork to move the decision on how | Fariborz Jahanian | 2009-11-25 | 1 | -11/+11 |
* | Fix a recent regression probably caused by addition of altivec-style | Fariborz Jahanian | 2009-11-23 | 1 | -1/+2 |
* | Added rudimentary C++0x attribute support. | Alexis Hunt | 2009-11-21 | 1 | -4/+4 |
* | This patch fixes a bug in misdiagnosing correct | Fariborz Jahanian | 2009-11-18 | 1 | -11/+0 |
* | Remove a bunch of #if 0'd code made irrelevant by the latest ParseUnqualified... | Douglas Gregor | 2009-11-03 | 1 | -106/+0 |
* | Replace the code that parses member access expressions after "." or | Douglas Gregor | 2009-11-03 | 1 | -0/+16 |
* | Use ParseUnqualifiedId when parsing id-expressions. This eliminates | Douglas Gregor | 2009-11-03 | 1 | -1/+5 |
* | simplify Sema::getTypeName a bit: if control gets out of the switch, | Chris Lattner | 2009-10-25 | 1 | -1/+1 |
* | In objc mode, every identifier in a cast expression was using doing a | Chris Lattner | 2009-10-25 | 1 | -18/+17 |
* | Diagnose misuse of '.*' and '->*' operators during parse | Fariborz Jahanian | 2009-10-23 | 1 | -1/+12 |
* | Parse a simple-template-id following a '~' when calling a destructor, e.g., | Douglas Gregor | 2009-10-19 | 1 | -7/+35 |
* | Pass the right SourceLocation to Actions.ActOnOverloadedOperatorReferenceExpr... | Anders Carlsson | 2009-10-13 | 1 | -2/+4 |
* | Implement code completion within a function call, triggered after the | Douglas Gregor | 2009-09-22 | 1 | -2/+19 |
* | Code completion for ordinary names when we're starting a declaration, express... | Douglas Gregor | 2009-09-21 | 1 | -0/+5 |
* | Initial implementation of a code-completion interface in Clang. In | Douglas Gregor | 2009-09-17 | 1 | -0/+8 |
* | Remove tabs, and whitespace cleanups. | Mike Stump | 2009-09-09 | 1 | -52/+52 |
* | Initial stab at implement dependent member references to member | Douglas Gregor | 2009-09-09 | 1 | -2/+4 |
* | If a destructor is referenced or a pseudo-destructor expression is | Douglas Gregor | 2009-09-04 | 1 | -1/+2 |
* | Rewrite of our handling of name lookup in C++ member access expressions, e.g., | Douglas Gregor | 2009-09-02 | 1 | -13/+4 |