Age | Commit message (Expand) | Author |
2009-12-22 | Enter the scope of an initializer for direct-initialization as well as | Douglas Gregor |
2009-12-20 | fix PR5500: clang fails to parse inline asm with :: in C++ mode | Chris Lattner |
2009-12-20 | refactor asm stmt parsing to avoid nesting as much, and | Chris Lattner |
2009-12-20 | Don't inject the class name until that magical lbrace. | John McCall |
2009-12-19 | Parse base specifiers within the scope of the class. This is possibly not | John McCall |
2009-12-19 | Refactor to remove more dependencies on PreDeclaratorDC. I seem to have made | John McCall |
2009-12-19 | Just push a new scope when parsing an out-of-line variable definition. | John McCall |
2009-12-19 | eliminate a call to NextToken() when parsing ::foo | Chris Lattner |
2009-12-19 | Teach TryAnnotateTypeOrScopeToken to deal with already-annotated | John McCall |
2009-12-16 | Check in a rudimentary FullExpr class that isn't used anywhere yet. Rename Ac... | Anders Carlsson |
2009-12-12 | Remember the type name's scope specifier in the DeclSpec. | John McCall |
2009-12-12 | Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave | Jeffrey Yasskin |
2009-12-11 | Don't enter a new scope for a namespace-qualified declarator unless we're | John McCall |
2009-12-11 | Implement access declarations. Most of the work here is parsing them, which | John McCall |
2009-12-11 | Implement just a bit more of inline assembly. | Mike Stump |
2009-12-10 | Privatize class members. | Benjamin Kramer |
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 | fix incorrect parsing of bitfields pointed out by Doug. I chose | Chris Lattner |
2009-12-10 | Second half of r91023, saving files is good. | Chris Lattner |
2009-12-10 | move GreaterThanIsOperatorScope into RAIIObjectsForParser. Add some more | Chris Lattner |
2009-12-10 | fix PR5740: a colon is sacred when parsing case statement expressions! | Chris Lattner |
2009-12-10 | refactor the 'ColonIsSacred' argument to ParseOptionalCXXScopeSpecifier | Chris Lattner |
2009-12-10 | rename ExtensionRAIIObject.h -> RAIIObjectsForParser.h | Chris Lattner |
2009-12-10 | spread 'const' love to some variables. this considerably reduces the amount o... | Nuno Lopes |
2009-12-09 | Fixes a bogus error when declaring an extern "C" array. | Fariborz Jahanian |
2009-12-07 | reduce nesting. | Chris Lattner |
2009-12-07 | Code completion for Objective-C @ keywords that are statements or expressions | Douglas Gregor |
2009-12-07 | Code completion for Objective-C @ directives | Douglas Gregor |
2009-12-07 | remove some defaulted params for consistency. | Chris Lattner |
2009-12-07 | reapply my patch for PR4451, which improves diagnostics for :: vs : confusion. | Chris Lattner |
2009-12-07 | fix a crash on invalid I found when working on something unrelated. | Chris Lattner |
2009-12-06 | revert my previous patch, it is breaking something and I don't have time | Chris Lattner |
2009-12-06 | implement PR4451, improving error recovery for a mistaken : where a :: was | Chris Lattner |
2009-12-06 | simplify logic. | Chris Lattner |
2009-12-06 | remove some extraneous syntax: sourceloc implicitly converts to sourcerange. | Chris Lattner |
2009-12-03 | Lift the ObjCPropertyCallback out of local scope to unbreak VS2005 builds. | John McCall |
2009-12-03 | Introduce the notion of literal types, as specified in C++0x. | Sebastian Redl |
2009-11-29 | Add DeclarationName support for C++0x operator literals. They should now work as | Sean Hunt |
2009-11-28 | Remove remaining VISIBILITY_HIDDEN from anonymous namespaces. | Benjamin Kramer |
2009-11-28 | Fix test and handle IK_LiteralOperatorId in a few more places. | Sean Hunt |
2009-11-28 | Add Parser support for C++0x literal operators ('operator "" i'). | Sean Hunt |
2009-11-25 | Fix attribute between function decl ')' and '{' or '=0' | John Thompson |
2009-11-25 | When the condition of a switch() statement is semantically invalid, | Douglas Gregor |
2009-11-25 | Parse C++ member check attributes - base_check, hiding, and override. | Sean Hunt |
2009-11-25 | Some fancy footwork to move the decision on how | Fariborz Jahanian |
2009-11-25 | Eliminate CXXConditionDeclExpr with extreme prejudice. | Douglas Gregor |
2009-11-24 | Have the parser tell sema whether a member declaration is a function definiti... | Sebastian Redl |
2009-11-24 | "Do" loops cannot have condition variables, so don't parse them. | Douglas Gregor |
2009-11-23 | Fix a recent regression probably caused by addition of altivec-style | Fariborz Jahanian |