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-17 | Fixes a typo, reported by Doug. | Fariborz Jahanian |
2009-11-16 | Handle case of missing '@end' in implementation context | Fariborz Jahanian |
2009-11-13 | Wherein the TargetInfo argument to Preprocessor is made 'const' and propogated. | Daniel Dunbar |
2009-11-11 | Introduce a new representation for template template | Douglas Gregor |
2009-11-11 | Create a new Scope when parsing a declaration with a C++ scope specifier. | John McCall |
2009-11-10 | Add newline at EOF. | Benjamin Kramer |
2009-11-10 | Improve parsing of template arguments to lay the foundation for | Douglas Gregor |
2009-11-09 | Add support for cdecl attribute. (As far as I know, it doesn't affect CodeGen | Eli Friedman |
2009-11-07 | Add basic code completion support for ObjC messages. | Steve Naroff |
2009-11-05 | Eliminate some false positives due to a thinko in the "'blah' is | Douglas Gregor |
2009-11-05 | Parse C++0x constexpr. Test case follows when this does something useful. | Sebastian Redl |
2009-11-04 | Eliminate the "old" ways of parsing operator-function-ids and | Douglas Gregor |
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-04 | Implement support for parsing dependent template-ids that refer to | Douglas Gregor |
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 | Silence a warning by giving Parser::FieldCallback a virtual destructor, and | John McCall |
2009-11-03 | Reorganize the parsing of decl groups / function definitions so that | John McCall |
2009-11-03 | Use ParseUnqualifiedId when parsing id-expressions. This eliminates | Douglas Gregor |
2009-11-03 | Switch ParseStructDeclaration to a callback-based API. This will make | John McCall |
2009-11-03 | Introduce a new class, UnqualifiedId, that provides a parsed | Douglas Gregor |
2009-10-30 | Improved fix for PR3844, which recovers better for class template | Douglas Gregor |
2009-10-25 | cleanups | Chris Lattner |
2009-10-25 | Remove the Skip parameter from GetTypeForDeclarator and dependents. Take the ... | Sebastian Redl |
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-29 | Move DeclSpec::setProtocolQualifiers() out of line. | Argyrios Kyrtzidis |
2009-09-29 | Keep protocol source locations when parsing protocol references. | Argyrios Kyrtzidis |
2009-09-25 | Declarators can now properly represent template-ids, e.g., for | Douglas Gregor |
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-24 | Refactor the representation of qualifiers to bring ExtQualType out of the | John McCall |
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 |