Age | Commit message (Expand) | Author |
2010-10-22 | Parse attributes on enumerators and instantiate attributes on enum decls. | John McCall |
2010-10-21 | Teach the C++ simple-type-specifier parser and tentative parses about | Douglas Gregor |
2010-10-11 | Add parsing support for Microsoft attributes. MS attributes will just be skip... | Francois Pichet |
2010-10-08 | Implement C++0x scoped enumerations, from Daniel Wallin! (and tweaked a | Douglas Gregor |
2010-10-08 | When we encounter a '==' in a context expecting a '=', assume the user made a... | Argyrios Kyrtzidis |
2010-10-01 | Implement the C++0x "trailing return type" feature, e.g., | Douglas Gregor |
2010-09-28 | vla expressions used in __typeof__ must be evaluated. | Fariborz Jahanian |
2010-09-24 | Allow the use of C++0x deleted functions as an extension in C++98. | Anders Carlsson |
2010-09-16 | Implement code completion for Objective-C class message sends that are | Douglas Gregor |
2010-09-16 | Implement automatic bracket insertion for Objective-C class message | Douglas Gregor |
2010-09-11 | When parsing default function arguments, do not mark any declarations | Douglas Gregor |
2010-09-09 | Eliminate the comma locations from all of the Sema routines that deal | Douglas Gregor |
2010-09-07 | Improve recovery when a comma is missing between enumerators in an | Douglas Gregor |
2010-09-03 | Add symantic support for the Pascal calling convention via | Dawn Perchik |
2010-08-31 | Enable inline namespaces in C++03 as an extension. | Sebastian Redl |
2010-08-27 | Parser support for inline namespaces | Sebastian Redl |
2010-08-27 | Suggest "const" and "volatile" code completions after a function | Douglas Gregor |
2010-08-26 | One who seeks knowledge learns something new every day. | John McCall |
2010-08-25 | Reformatting. | John McCall |
2010-08-24 | OwningExprResult -> ExprResult. This patch brought to you by | John McCall |
2010-08-24 | Abstract out passing around types and kill off ActionBase. | John McCall |
2010-08-23 | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall |
2010-08-23 | Introduce a new code-completion point when we're parsing a | Douglas Gregor |
2010-08-23 | When complaining about a duplicate declspec, provide a Fix-It that | Douglas Gregor |
2010-08-23 | Sundry incremental steps towards killing off Action. | John McCall |
2010-08-21 | DeclPtrTy -> Decl * | John McCall |
2010-08-20 | Another step in the process of making the parser depend on Sema: | John McCall |
2010-08-17 | Get rid of extra nesting when checking for invalid type, | Fariborz Jahanian |
2010-08-17 | Diagnose if type of iboutletcollection attribute is a builtin type. | Fariborz Jahanian |
2010-08-16 | Fix a crash when parsing malformed out-of-line member function | Fariborz Jahanian |
2010-08-11 | Once code completion has completed, pass a "completion context" on to | Douglas Gregor |
2010-08-06 | Introduce a new token kind 'cxx_defaultarg_end' to mark the end of C++ defaul... | Argyrios Kyrtzidis |
2010-07-29 | Reword the empty struct/union warning in C to note that such structs and unio... | Douglas Gregor |
2010-07-11 | Fix PR7617 by not entering ParseFunctionDefinition when | Chris Lattner |
2010-07-11 | add a const qualifier, refactor some code. | Chris Lattner |
2010-07-02 | Move the "current scope" state from the Parser into Action. This | Douglas Gregor |
2010-06-17 | Make sure parens/braces/brackets are correctly balanced. | Argyrios Kyrtzidis |
2010-06-16 | Make the "extra ';' inside a struct or union" diagnostic more | Douglas Gregor |
2010-06-16 | Add some missing parentheses, from Anton Yartsev | Douglas Gregor |
2010-05-30 | Teach code completion to adjust its completion priorities based on the | Douglas Gregor |
2010-05-28 | Empty enum in c is now error to match gcc's behavior. | Fariborz Jahanian |
2010-05-25 | Improve code completion in failure cases in two ways: | Douglas Gregor |
2010-05-21 | Propagate access specifiers to anonymous union members nested within classes. | John McCall |
2010-05-19 | Added basic source locations to Elaborated and DependentName types. | Abramo Bagnara |
2010-05-18 | Add support for Microsoft's __thiscall, from Steven Watanabe! | Douglas Gregor |
2010-05-14 | Improve error recovery in C/ObjC when the first argument of a function | Chris Lattner |
2010-05-14 | Refactor ParseFunctionDeclaratorIdentifierList to have the first | Chris Lattner |
2010-05-03 | It's okay to reference an enum in a template definition, even though | Douglas Gregor |
2010-04-24 | Be more careful around dependent nested-name-specifiers, complaining | Douglas Gregor |
2010-04-23 | Make Parser::ConsumeAndStoreUntil() more consistent with Parser::SkipUntil(). | Argyrios Kyrtzidis |