aboutsummaryrefslogtreecommitdiff
path: root/lib/Parse/ParseObjc.cpp
AgeCommit message (Expand)Author
2010-04-12fix a bug I noticed by inspection, correcting two reject-valid bugs.Chris Lattner
2010-04-12Have the parser decide whether a message to super is a variable orChris Lattner
2010-04-11fix PR6811 by not parsing 'super' as a magic expression inChris Lattner
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-04-06Patch to not build ivar ASTs when they are ilegallyFariborz Jahanian
2010-04-02Improve diagnosing when a method type does not start with '-'|'+'Fariborz Jahanian
2010-03-31Issue better syntax error when objc's messagingFariborz Jahanian
2010-03-31Reinstate my CodeModificationHint -> FixItHint renaming patch, withoutDouglas Gregor
2010-03-31Revert r100008, which inexplicably breaks the clang-i686-darwin10 builderDouglas Gregor
2010-03-31Rename CodeModificationHint to FixItHint, since we've been using theDouglas Gregor
2010-03-22Fixes access rues for ivars declared in classFariborz Jahanian
2010-03-16Don't consume tokens past the end-of-file in an @interface. FixesDouglas Gregor
2010-02-22Early support for declaring ivars in class extensions. wip.Fariborz Jahanian
2010-02-18Allow GNU attributes to appear in an Objective-C method declarationTed Kremenek
2010-02-15Issue a bettter diagnostics for incorrect property setter name.Fariborz Jahanian
2010-02-11Clean up ownership of 'AttributeList' objects in Parser. ApparentlyTed Kremenek
2010-02-03Simplify setting of DeclContext for @catch variableFariborz Jahanian
2010-02-03Fix DeclContext of an objective-c @catch variableFariborz Jahanian
2010-01-16Keep track of the source locations for each protocol reference inDouglas Gregor
2010-01-13Code-completion for @public, @protected, @private, @package.Douglas Gregor
2010-01-13Whenever completing ordinary names for an Objective-C source, alsoDouglas Gregor
2010-01-07Change ObjCContainerDecl to contain the entire range for the '@end'Ted Kremenek
2009-12-16Check in a rudimentary FullExpr class that isn't used anywhere yet. Rename Ac...Anders Carlsson
2009-12-07reduce nesting.Chris Lattner
2009-12-07Code completion for Objective-C @ keywords that are statements or expressionsDouglas Gregor
2009-12-07Code completion for Objective-C @ directivesDouglas Gregor
2009-12-06remove some extraneous syntax: sourceloc implicitly converts to sourcerange.Chris Lattner
2009-12-03Lift the ObjCPropertyCallback out of local scope to unbreak VS2005 builds.John McCall
2009-11-21Added rudimentary C++0x attribute support.Sean Hunt
2009-11-19Objective-C code completion within properties after "setter = " orDouglas Gregor
2009-11-19Improve code completion for Objective-C message sends, so that weDouglas Gregor
2009-11-18Rename CodeCompleteObjCProperty to something more specific. No functionality ...Douglas Gregor
2009-11-18Code completion after @dynamicDouglas Gregor
2009-11-18Code completion for Objective-C @synthesized.Douglas Gregor
2009-11-18Improve diagnostics and recovery when parsing @synthesized definitionsDouglas Gregor
2009-11-18Implement code completion for Objective-C category names in @interfaceDouglas Gregor
2009-11-18Code completion for Objective-C class names after @interface,Douglas Gregor
2009-11-18Code completion after @property, providing the names of forward-declared prop...Douglas Gregor
2009-11-18Code completion for Objective-C properly listsDouglas Gregor
2009-11-17Rename Objective-C message send completion functions to indicate that we're r...Douglas Gregor
2009-11-17Pass source locations of identifiers referenced by @class through Action::Act...Ted Kremenek
2009-11-17Fixes a typo, reported by Doug.Fariborz Jahanian
2009-11-16Handle case of missing '@end' in implementation contextFariborz Jahanian
2009-11-10Add FIXIT hint for -Wsemicolon-before-method-bodyTed Kremenek
2009-11-10Make -Wsemicolon-before-method-body opt-in (and part of -Wextra). Addresses ...Ted Kremenek
2009-11-07Add basic code completion support for ObjC messages.Steve Naroff
2009-11-06Fix a bogus objective-c warning with -pedantic.Fariborz Jahanian
2009-11-06add some fixit hints.Chris Lattner
2009-11-04Change our basic strategy for avoiding deprecation warnings when the decl useJohn McCall