aboutsummaryrefslogtreecommitdiff
path: root/lib/Parse/ParseObjc.cpp
AgeCommit message (Expand)Author
2008-09-26Parser support for prefix __attribute__ on @protocol.Daniel Dunbar
2008-09-26Have @finally introduce a new scope.Ted Kremenek
2008-09-19Fix rdar://6222856: the receiver of a message expr is anChris Lattner
2008-08-26Synthesize property setter method as we do for getter.Daniel Dunbar
2008-08-23Reserved C++ words are valid selectors in Objective-C++Anders Carlsson
2008-08-23we already have a handle on the 'in' keyword, don't bother getting two.Chris Lattner
2008-08-23Fix a FIXME by not creating an invalid AST on erroneous input. Also Chris Lattner
2008-08-05Move AsmLabel into Declarator instead of just a parameter toDaniel Dunbar
2008-08-05Fix rdar://6124613 a crash on invalid code.Chris Lattner
2008-08-05Add more Parser/Sema support for GCC asm-label extension.Daniel Dunbar
2008-07-26Pull protocol resolution of out ActOnStartClassInterface, this is also the Chris Lattner
2008-07-26refactor protocol resolution out of ActOnStartCategoryInterfaceChris Lattner
2008-07-26pull protocol resolution out into ActOnStartProtocolInterface.Chris Lattner
2008-07-25gcc requires a semicolon at the end of an interface, unlike its extension for...Chris Lattner
2008-07-25Move fix in r54013 from the parser to sema.Steve Naroff
2008-07-25Fix Parser::ParseObjCMethodDefinition(). Only call the actions module for val...Steve Naroff
2008-07-21minor cleanup to the actions interface to pass around SmallVectorImpl insteadChris Lattner
2008-06-06Initial work on additional memory collection for ObjC AST objects. We nowTed Kremenek
2008-06-04Parser::ParseObjCSynchronizedStmt() needs to Enter/Exit a decl scope.Steve Naroff
2008-06-03Fix parser bug/FIXME with @catch.Steve Naroff
2008-05-22Make sure the source location for @property points the the @-sign (not the de...Steve Naroff
2008-05-07This patch introduces declaration of getter methods for ObjC2'sFariborz Jahanian
2008-05-06Patch to refactor setter/getter names of property attributes into SelectorFariborz Jahanian
2008-05-05percolate @optional/@required protocols down to ASTs forFariborz Jahanian
2008-04-29Default visbility for instance variables is protected.Fariborz Jahanian
2008-04-21Support for @dynamic AST build.Fariborz Jahanian
2008-04-18Initial work for property implementation declarations.Fariborz Jahanian
2008-04-14New AST representation for each objc2's property declaration.Fariborz Jahanian
2008-04-11AST generation for objc2's property declarations.Fariborz Jahanian
2008-04-11Minor changes per Chris L's review.Fariborz Jahanian
2008-04-10Patch for:Fariborz Jahanian
2008-04-10refactor Parser::ParseStructDeclaration to return a vector of uninterpreted Chris Lattner
2008-04-07move sorting of qualifying protocols from the parser intoChris Lattner
2008-03-17clean up property memory allocation to move it into the ast classesChris Lattner
2008-03-16minor cleanups, make getNumInstanceMethods always return unsigned.Chris Lattner
2008-03-15Make a major restructuring of the clang tree: introduce a top-levelChris Lattner