Age | Commit message (Expand) | Author |
2010-04-08 | Make CXXScopeSpec invalid when incomplete, and propagate that into any | Jeffrey Yasskin |
2010-04-07 | Fix some redundant errors by changing CXXScopeSpec::isSet calls into | Jeffrey Yasskin |
2010-04-05 | fix PR6782, an accept invalid. We weren't emitting the diagnostic | Chris Lattner |
2010-03-31 | Reinstate my CodeModificationHint -> FixItHint renaming patch, without | Douglas Gregor |
2010-03-31 | Revert r100008, which inexplicably breaks the clang-i686-darwin10 builder | Douglas Gregor |
2010-03-31 | Rename CodeModificationHint to FixItHint, since we've been using the | Douglas Gregor |
2010-03-16 | Make sure we actually override ReadHeaderFileInfo when we meant to | Douglas Gregor |
2010-03-02 | Diagnose the declaration of enum templates. Also, be a bit more | Douglas Gregor |
2010-03-01 | Robustify instantiation of templates when there are errors in the | Douglas Gregor |
2010-03-01 | Don't infinite-loop if TryAnnotateCXXScopeToken fails to annotate but doesn't | John McCall |
2010-02-28 | pull some altivec stuff out of line. | Chris Lattner |
2010-02-28 | Implement PR6423 by using one token of lookahead to disambiguate | Chris Lattner |
2010-02-26 | Fix an assertion-on-error during tentative constructor parsing by | John McCall |
2010-02-19 | Only parse C++0x attribute specifiers in declarators when in C++0x | Douglas Gregor |
2010-02-14 | Improve the diagnostic given when referring to a tag type without a tag (in C) | John McCall |
2010-02-11 | Clean up ownership of 'AttributeList' objects in Parser. Apparently | Ted Kremenek |
2010-02-05 | First stage of adding AltiVec support | John Thompson |
2010-02-03 | In some contexts, type declarations cannot occur. Pass this information down ... | Sebastian Redl |
2010-02-02 | improve diagnostics on missing ; in a struct. Before: | Chris Lattner |
2010-01-25 | Move the type specifier location for elaborated-type-specifiers from | Douglas Gregor |
2010-01-13 | Whenever completing ordinary names for an Objective-C source, also | Douglas Gregor |
2010-01-13 | Add type source information for both kinds of typeof types. | John McCall |
2010-01-13 | Reimplement constructor declarator parsing to cope with template-ids | Douglas Gregor |
2010-01-10 | Improve code completion by introducing patterns for the various C and | Douglas Gregor |
2009-12-28 | Fix 80-col violation. | Zhongxing Xu |
2009-12-22 | Enter the scope of an initializer for direct-initialization as well as | Douglas Gregor |
2009-12-19 | Just push a new scope when parsing an out-of-line variable definition. | John McCall |
2009-12-12 | Remember the type name's scope specifier in the DeclSpec. | John McCall |
2009-12-11 | Don't enter a new scope for a namespace-qualified declarator unless we're | John McCall |
2009-12-10 | fix incorrect parsing of bitfields pointed out by Doug. I chose | Chris Lattner |
2009-12-10 | rename ExtensionRAIIObject.h -> RAIIObjectsForParser.h | Chris Lattner |
2009-12-06 | remove some extraneous syntax: sourceloc implicitly converts to sourcerange. | Chris Lattner |
2009-11-21 | Added rudimentary C++0x attribute support. | Sean Hunt |
2009-11-10 | Improve parsing of template arguments to lay the foundation for | Douglas Gregor |
2009-11-05 | Parse C++0x constexpr. Test case follows when this does something useful. | Sebastian Redl |
2009-11-04 | Change our basic strategy for avoiding deprecation warnings when the decl use | John McCall |
2009-11-03 | CFieldCallback doesn't need to create an ExtensionRAIIObject: it's actually | John McCall |
2009-11-03 | Replace the code that parses member access expressions after "." or | Douglas Gregor |
2009-11-03 | Reorganize the parsing of decl groups / function definitions so that | John McCall |
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-13 | Improve diagnostics when the parser encounters a declarator with an | Douglas Gregor |
2009-09-29 | Keep protocol source locations when parsing protocol references. | Argyrios Kyrtzidis |
2009-09-28 | Parse a C++ scope specifier followed by a "typename" annotation token as a ty... | Douglas Gregor |
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-22 | In C++, a variadic function does not need an ellipsis prior to the comma. Par... | Douglas Gregor |
2009-09-21 | Code completion for ordinary names when we're starting a declaration, express... | Douglas Gregor |
2009-09-18 | Implement code completion for tags, e.g., code completion after "enum" | Douglas Gregor |
2009-09-11 | Support elaborated dependent types and diagnose tag mismatches. | John McCall |