| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Issue a more descriptive diagnostics when mis-declaring | Fariborz Jahanian | 2009-07-20 | 1 | -2/+4 |
* | Pass the right brace SourceLocation from the Parser to the TagDecls. | Argyrios Kyrtzidis | 2009-07-14 | 1 | -1/+1 |
* | Patch to implement template types in ctor-initializer list. | Fariborz Jahanian | 2009-07-01 | 1 | -5/+16 |
* | Patch to support optional nested-name-specifier in in ctor-initializer | Fariborz Jahanian | 2009-06-30 | 1 | -3/+5 |
* | Make it possible for using decls to point to operators. Fixes PR4441. | Anders Carlsson | 2009-06-27 | 1 | -8/+24 |
* | Fix PR4448. | Anders Carlsson | 2009-06-26 | 1 | -2/+0 |
* | Parse the C++0x decltype specifier. | Anders Carlsson | 2009-06-24 | 1 | -0/+47 |
* | Parsing and AST support for using declarations, from John Thompson! | Douglas Gregor | 2009-06-20 | 1 | -6/+69 |
* | Keep track of when declarations are "used" according to C and | Douglas Gregor | 2009-06-19 | 1 | -1/+1 |
* | Diagnose the use of attributes on namespace aliases, from Anis Ahmad | Douglas Gregor | 2009-06-17 | 1 | -3/+11 |
* | improve localizability by not passing english phrases into | Chris Lattner | 2009-06-14 | 1 | -4/+5 |
* | Add more parser support for Microsoft extensions. | Eli Friedman | 2009-06-08 | 1 | -3/+2 |
* | Add real parsing for __declspec. It doesn't make much of a difference | Eli Friedman | 2009-06-08 | 1 | -1/+2 |
* | Reject incomplete types in exception specs. | Sebastian Redl | 2009-05-29 | 1 | -3/+9 |
* | If a declarator group declares a type, make sure to add that declaration | Eli Friedman | 2009-05-29 | 1 | -1/+1 |
* | When we parse a tag specifier, keep track of whether that tag | Douglas Gregor | 2009-05-28 | 1 | -2/+3 |
* | Reimplement much of the way that we track nested classes in the | Douglas Gregor | 2009-05-27 | 1 | -22/+69 |
* | Improve name lookup for and template instantiation of declaration | Douglas Gregor | 2009-05-27 | 1 | -1/+3 |
* | Merge the ASTVector and ASTOwningVector templates, since they offered | Douglas Gregor | 2009-05-21 | 1 | -1/+0 |
* | Use v.data() instead of &v[0] when SmallVector v might be empty. | Jay Foad | 2009-05-21 | 1 | -4/+5 |
* | Implement explicit instantiations of member classes of class templates, e.g., | Douglas Gregor | 2009-05-14 | 1 | -6/+26 |
* | Implement parsing for explicit instantiations of class templates, e.g., | Douglas Gregor | 2009-05-12 | 1 | -8/+66 |
* | Fix test case by always setting the type spec type, even for friend decls. | Anders Carlsson | 2009-05-11 | 1 | -5/+4 |
* | Add an ActOnFriendDecl and call it for friend class decls. | Anders Carlsson | 2009-05-11 | 1 | -3/+11 |
* | For friend class decls, always use TK_Reference so we'll try to look up exist... | Anders Carlsson | 2009-05-11 | 1 | -1/+1 |
* | Have the parser communicate the exception specification to the action. | Sebastian Redl | 2009-04-29 | 1 | -3/+8 |
* | Implement function-try-blocks. However, there's a very subtle bug that I can'... | Sebastian Redl | 2009-04-26 | 1 | -1/+3 |
* | Diagnose invalid uses of tagged types with a missing tag. For example, in: | Chris Lattner | 2009-04-12 | 1 | -11/+11 |
* | Parse deleted member functions. Parsing member declarations goes through a di... | Sebastian Redl | 2009-04-12 | 1 | -5/+17 |
* | fix a FIXME, providing accurate source range info for DeclStmt's. The end | Chris Lattner | 2009-04-02 | 1 | -13/+25 |
* | Make parsing a semantic analysis a little more robust following Sema | Douglas Gregor | 2009-04-01 | 1 | -11/+13 |
* | Parsing and AST representation for dependent template names that occur | Douglas Gregor | 2009-03-31 | 1 | -2/+2 |
* | Improve the representation of template names in the AST. This | Douglas Gregor | 2009-03-30 | 1 | -1/+1 |
* | Push DeclGroup much farther throughout the compiler. Now the various | Chris Lattner | 2009-03-29 | 1 | -30/+36 |
* | reduce indentation with an early exit. | Chris Lattner | 2009-03-29 | 1 | -25/+23 |
* | Parse the location of the 'namespace' token to ActOnNamespaceAliasDef. No fun... | Anders Carlsson | 2009-03-28 | 1 | -6/+7 |
* | Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for a | Chris Lattner | 2009-03-28 | 1 | -38/+36 |
* | Add an ActOnNamespaceAliasDef action and have the parser call it. | Anders Carlsson | 2009-03-28 | 1 | -1/+2 |
* | Parse namespace aliases. | Anders Carlsson | 2009-03-28 | 1 | -4/+35 |
* | Handle parsing of templates in member declarations. Pass the AccessSpecifier ... | Anders Carlsson | 2009-03-26 | 1 | -2/+7 |
* | Pass access specifiers through to member classes and member enums. | Douglas Gregor | 2009-03-25 | 1 | -3/+4 |
* | In Parser::ParseClassSpecifier, don't conflate a NULL declaration with | Douglas Gregor | 2009-03-25 | 1 | -10/+12 |
* | Handle static_asserts when instantiating structs. | Anders Carlsson | 2009-03-15 | 1 | -3/+2 |
* | Pass more sane arguments to ActOnStaticAssertDeclaration | Anders Carlsson | 2009-03-13 | 1 | -9/+4 |
* | Add parser support for static_assert. | Anders Carlsson | 2009-03-11 | 1 | -1/+54 |
* | rename PrettyStackTraceDecl -> PrettyStackTraceActionsDecl. | Chris Lattner | 2009-03-05 | 1 | -6/+6 |
* | Include struct context info for parser/sema crashes. This | Chris Lattner | 2009-03-05 | 1 | -0/+4 |
* | Include namespace contexts in the virtual stack trace, so we get stuff | Chris Lattner | 2009-03-05 | 1 | -0/+4 |
* | Implementing parsing of template-ids as class-names, so that we can | Douglas Gregor | 2009-02-25 | 1 | -9/+26 |
* | Implement parsing of nested-name-specifiers that involve template-ids, e.g., | Douglas Gregor | 2009-02-25 | 1 | -65/+40 |