aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Parse/Action.h
AgeCommit message (Expand)Author
2010-08-20Another step in the process of making the parser depend on Sema:John McCall
2010-08-11Once code completion has completed, pass a "completion context" on toDouglas Gregor
2010-08-06Template keyword should not be ignored building a QualifiedTemplateName.Abramo Bagnara
2010-08-05Implement #pragma GCC visibility.Eli Friedman
2010-07-26Eliminate the "minimal" and printing parser actions, which only everDouglas Gregor
2010-07-25Start removing the use of smart pointers from the Parse/SemaDouglas Gregor
2010-07-22atch for implementation of objective-c's -WselectorFariborz Jahanian
2010-07-13Downgrade the "when type is in parentheses, array cannot have dynamicDouglas Gregor
2010-07-08Support code completion for parameter names in Objective-C methodDouglas Gregor
2010-07-08Introduce a new code-completion point prior to an identifier in theDouglas Gregor
2010-07-02Move the "current scope" state from the Parser into Action. ThisDouglas Gregor
2010-07-01Implement C++ DR481, which clarifies that the scope of templateDouglas Gregor
2010-06-28Partial fix for PR7267 based on comments by John McCall on an earlier patch.Chandler Carruth
2010-06-16When we see a 'template' disambiguator that marks the next identifierDouglas Gregor
2010-06-16Fix the recently-added warning about 'typename' and 'template'Douglas Gregor
2010-06-05Added AccessSpecDecl node.Abramo Bagnara
2010-05-30Teach code completion to adjust its completion priorities based on theDouglas Gregor
2010-05-27Implement a code-completion hook for the receiver of an Objective-CDouglas Gregor
2010-05-27Parse/Sema: Add support for '#pragma options align=packed', which, it should beDaniel Dunbar
2010-05-27Parse/Sema: Add support for '#pragma options align=native'.Daniel Dunbar
2010-05-26Parse: Add support for '#pragma options align'.Daniel Dunbar
2010-05-25Improve code completion in failure cases in two ways:Douglas Gregor
2010-05-21Improve parser recovery when we encounter a dependent template nameDouglas Gregor
2010-05-21Propagate access specifiers to anonymous union members nested within classes.John McCall
2010-05-10Alternative workaround for MSVC compilation failure, from Dimitry AndricDouglas Gregor
2010-05-08Attempted workaround for MSVC compile errorDouglas Gregor
2010-05-06Try to work around a Visual C++ bug with copy-assignment.Douglas Gregor
2010-05-06Rework our handling of temporary objects within the conditions ofDouglas Gregor
2010-05-05This patch deals with Sema Part of Setter/Getter synthesisFariborz Jahanian
2010-05-03Replace a char*/size pair with stringref.Benjamin Kramer
2010-04-23Rework Parser-Sema interface for Objective-C @catch exception objectDouglas Gregor
2010-04-23Improve the AST representation of Objective-C @try/@catch/@finallyDouglas Gregor
2010-04-21Migrate the responsibility for turning the receiver name in anDouglas Gregor
2010-04-21Rework the Parser-Sema interaction for Objective-C messageDouglas Gregor
2010-04-15Feed proper source-location information into Sema::LookupSingleResult,Douglas Gregor
2010-04-14Introduce a parsing action to distinguish between class, instance, andDouglas Gregor
2010-04-11fix PR6811 by not parsing 'super' as a magic expression inChris Lattner
2010-04-08Make CXXScopeSpec invalid when incomplete, and propagate that into anyJeffrey Yasskin
2010-04-08Patch to implement gcc's cstyle arguments in objcFariborz Jahanian
2010-04-07Implement code completion for Objective-C method declarations andDouglas Gregor
2010-03-29Support __attribute__((packed)) (along with other attributes) at theDouglas Gregor
2010-03-19Remove the capture, serialization, and deserialization of commentDouglas Gregor
2010-03-17Clean up after ourselves when there's an error parsing the base clause.John McCall
2010-03-01Robustify instantiation of templates when there are errors in theDouglas Gregor
2010-02-25Restore the invariant that a nested-name-specifier can only containDouglas Gregor
2010-02-24ActOnPseudoDestructorExpr now performs all semantic analysis forDouglas Gregor
2010-02-24Rework parsing of pseudo-destructor expressions and explicitDouglas Gregor
2010-02-21Implement support for parsing pseudo-destructor expression with a nested-name...Douglas Gregor
2010-02-16Improve parsing and instantiation of destructor names, so that we canDouglas Gregor
2010-02-07Add attributes to namespace decls.Anders Carlsson