Age | Commit message (Expand) | Author |
2011-01-05 | Fix an embarrassing think in the disambiguation logic for the ellipsis in a p... | Douglas Gregor |
2010-12-24 | Refactor how we collect attributes during parsing, and add slots for attributes | John McCall |
2010-12-23 | Implement parsing of function parameter packs and non-type template | Douglas Gregor |
2010-12-10 | Added ParenType type node. | Abramo Bagnara |
2010-12-03 | Added struct/class syntactic info for c++0x scoped enum. | Abramo Bagnara |
2010-12-01 | After parsing a ':' in an enum-specifier within class context, | Douglas Gregor |
2010-11-22 | Remove the other FIXME I added. This is covered by the Index test and not tes... | Nico Weber |
2010-11-22 | Try to get the bots green after r119966. | Nico Weber |
2010-11-22 | Fix the source range of CXXNewExprs. Fixes http://llvm.org/pr8661. | Nico Weber |
2010-11-19 | When parsing something that looks like an ill-formed | Douglas Gregor |
2010-11-16 | Emit a specific diagnostic when typedefing C++ bool, mirroring gcc. | Argyrios Kyrtzidis |
2010-11-10 | Region-allocate all AttributeList objects from a factory object instead of ma... | Ted Kremenek |
2010-11-10 | Diagnose attempst to template using declarations and using directives. | John McCall |
2010-11-09 | fix PR8380, a crash on invalid due to an illogical DeclSpec SourceRange being... | Chris Lattner |
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 |