Age | Commit message (Expand) | Author |
2009-11-18 | Code completion after @property, providing the names of forward-declared prop... | Douglas Gregor |
2009-11-18 | Code completion for Objective-C properly lists | Douglas Gregor |
2009-11-18 | Incremental progress on using declarations. Split UnresolvedUsingDecl into | John McCall |
2009-11-17 | Rename Objective-C message send completion functions to indicate that we're r... | Douglas Gregor |
2009-11-17 | Pass source locations of identifiers referenced by @class through Action::Act... | Ted Kremenek |
2009-11-11 | Introduce a new representation for template template | Douglas Gregor |
2009-11-10 | Improve parsing of template arguments to lay the foundation for | Douglas Gregor |
2009-11-07 | Add basic code completion support for ObjC messages. | Steve Naroff |
2009-11-04 | Switch parsing of using declarations over to ParseUnqualifiedId. | Douglas Gregor |
2009-11-04 | Change our basic strategy for avoiding deprecation warnings when the decl use | John McCall |
2009-11-03 | Parsing and semantic analysis for template-ids that name overloaded | Douglas Gregor |
2009-11-03 | Replace the code that parses member access expressions after "." or | Douglas Gregor |
2009-11-03 | Use ParseUnqualifiedId when parsing id-expressions. This eliminates | Douglas Gregor |
2009-10-25 | change Sema::ActOnFriendTypeDecl to use GetTypeForDeclarator instead | Chris Lattner |
2009-10-22 | When building and instantiating a template-id reference expression, such as | Douglas Gregor |
2009-10-19 | Parse a simple-template-id following a '~' when calling a destructor, e.g., | Douglas Gregor |
2009-10-13 | Improve diagnostics when the parser encounters a declarator with an | Douglas Gregor |
2009-10-08 | Add code completion support for ObjC property declarations/attributes. | Steve Naroff |
2009-09-25 | WIP implementation of explicit instantiation of function templates, | Douglas Gregor |
2009-09-24 | When entering the scope of a declarator, make sure that the scope is | Douglas Gregor |
2009-09-22 | Implement code completion within a function call, triggered after the | Douglas Gregor |
2009-09-21 | Another code-completion TODO | Douglas Gregor |
2009-09-21 | Code completion for ordinary names when we're starting a declaration, express... | Douglas Gregor |
2009-09-21 | Code completion for "case" statements within a switch on an expression | Douglas Gregor |
2009-09-18 | C++ code completion after the "operator" keyword. Provide overloaded | Douglas Gregor |
2009-09-18 | Introduce four new code-completion hooks for C++: | Douglas Gregor |
2009-09-18 | Implement code completion for tags, e.g., code completion after "enum" | Douglas Gregor |
2009-09-17 | Initial implementation of a code-completion interface in Clang. In | Douglas Gregor |
2009-09-16 | Improved representation and support for friend class templates. Angst about ... | John McCall |
2009-09-14 | Skeletal support for friend class templates. | John McCall |
2009-09-11 | Alter Action's friend interface to prepare for templated friend declarations and | John McCall |
2009-09-11 | Support elaborated dependent types and diagnose tag mismatches. | John McCall |
2009-09-09 | Remove tabs, and whitespace cleanups. | Mike Stump |
2009-09-08 | Support templateids in friend declarations. Fixes bug 4859. | John McCall |
2009-09-04 | If a destructor is referenced or a pseudo-destructor expression is | Douglas Gregor |
2009-09-04 | Parse extern templates, pass that information all the way to Sema, | Douglas Gregor |
2009-09-04 | Correctly handle elaborated template ids. Still not handled properly for fri... | John McCall |
2009-09-02 | Rewrite of our handling of name lookup in C++ member access expressions, e.g., | Douglas Gregor |
2009-08-31 | Add parsing for references to member function templates with explicit | Douglas Gregor |
2009-08-31 | Support explicit C++ member operator syntax, from James Porter! | Douglas Gregor |
2009-08-29 | Set the access specifier for using decls. | Anders Carlsson |
2009-08-26 | When we know that we are parsing a class-name, implicitly construct a | Douglas Gregor |
2009-08-26 | Address some of Doug's comments. | Anders Carlsson |
2009-08-25 | Parsing of pseudo-destructors. | Anders Carlsson |
2009-08-25 | Improve support for out-of-line definitions of nested templates and | Douglas Gregor |
2009-08-20 | Initial support for parsing and representation of member function templates. | Douglas Gregor |
2009-08-18 | Change ActOnReturnStmt to not take a FullExprArg. Instead, Sema will wrap the... | Anders Carlsson |
2009-08-16 | AddInitializerToDecl can't take a FullExprArg. Make it take an ExprArg, and c... | Anders Carlsson |
2009-08-11 | Argument-dependent lookup for friend declarations. Add a new decl type, | John McCall |
2009-08-10 | Take 2 on AltiVec-style vector initializers. | Nate Begeman |