| Commit message (Expand) | Author | Age | Files | Lines |
| * | Provide code completion for types after the '^' that starts a block | Douglas Gregor | 2010-10-18 | 1 | -0/+5 |
| * | When we have two identifiers in a row in Objective-C, make sure to | Douglas Gregor | 2010-09-28 | 1 | -1/+1 |
| * | Continue parsing more postfix expressions, even after semantic | Douglas Gregor | 2010-09-18 | 1 | -29/+18 |
| * | Improve recovery when the middle expression of a ternary operator is ill-formed | Douglas Gregor | 2010-09-17 | 1 | -2/+4 |
| * | When we run into an error parsing or type-checking the left-hand side | Douglas Gregor | 2010-09-17 | 1 | -24/+16 |
| * | rename variable, 'Type' seems to be present in | Gabor Greif | 2010-09-17 | 1 | -3/+3 |
| * | Implement automatic bracket insertion for Objective-C class message | Douglas Gregor | 2010-09-16 | 1 | -2/+56 |
| * | Handle bracket insertion for Objective-C class messages in a very | Douglas Gregor | 2010-09-15 | 1 | -37/+49 |
| * | Improve code completion for Objective-C message sends when the opening | Douglas Gregor | 2010-09-15 | 1 | -4/+15 |
| * | Extend bracket insertion to message sends to "super", e.g., | Douglas Gregor | 2010-09-15 | 1 | -0/+12 |
| * | Extend bracket insertion to handle nullary selectors, e.g. | Douglas Gregor | 2010-09-15 | 1 | -1/+1 |
| * | Implement bracket insertion for Objective-C instance message sends as | Douglas Gregor | 2010-09-15 | 1 | -4/+29 |
| * | Introduce a new code-completion context for a parenthesized | Douglas Gregor | 2010-09-14 | 1 | -0/+8 |
| * | Eli helped me understand how evaluation contexts work. | Sebastian Redl | 2010-09-10 | 1 | -0/+4 |
| * | Parse the noexcept operator and stub out sema. | Sebastian Redl | 2010-09-10 | 1 | -3/+17 |
| * | Eliminate the comma locations from all of the Sema routines that deal | Douglas Gregor | 2010-09-09 | 1 | -2/+1 |
| * | Microsoft's __uuidof operator implementation part 1. | Francois Pichet | 2010-09-08 | 1 | -0/+3 |
| * | Implement __has_virtual_destructor. Patch by Steven Watanabe. | Sebastian Redl | 2010-09-02 | 1 | -1/+2 |
| * | Implement the __has_nothrow trait family, by Steven Watanabe. | Sebastian Redl | 2010-08-31 | 1 | -3/+6 |
| * | Revert my user-defined literal commits - r1124{58,60,67} pending | Alexis Hunt | 2010-08-30 | 1 | -2/+1 |
| * | Implement C++0x user-defined string literals. | Alexis Hunt | 2010-08-29 | 1 | -1/+2 |
| * | Propagate whether an id-expression is the immediate argument of | John McCall | 2010-08-27 | 1 | -1/+5 |
| * | One who seeks knowledge learns something new every day. | John McCall | 2010-08-26 | 1 | -11/+11 |
| * | Preserve invalidity of typeof operands in C++. | John McCall | 2010-08-24 | 1 | -1/+2 |
| * | OwningExprResult -> ExprResult. This patch brought to you by | John McCall | 2010-08-24 | 1 | -44/+44 |
| * | Abstract out passing around types and kill off ActionBase. | John McCall | 2010-08-24 | 1 | -15/+15 |
| * | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall | 2010-08-23 | 1 | -68/+59 |
| * | Sundry incremental steps towards killing off Action. | John McCall | 2010-08-23 | 1 | -13/+14 |
| * | Another step in the process of making the parser depend on Sema: | John McCall | 2010-08-20 | 1 | -3/+3 |
| * | Once code completion has completed, pass a "completion context" on to | Douglas Gregor | 2010-08-11 | 1 | -2/+2 |
| * | The pre-increment/pre-decrement grammar in C++ differs from that in C, | Douglas Gregor | 2010-08-06 | 1 | -4/+8 |
| * | The grammar for GNU typeof in C requires an expression to be | Douglas Gregor | 2010-07-28 | 1 | -4/+7 |
| * | tidy up comment. | Chris Lattner | 2010-07-19 | 1 | -2/+1 |
| * | 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 |