aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaDeclObjC.cpp
AgeCommit message (Expand)Author
2012-10-19Allow objc_requires_super to be used to check class methods as well.Jordan Rose
2012-10-18From Vassil Vassilev: enable Sema to deal with multiple ExternalSemaSources.Axel Naumann
2012-10-10Rename ObjCMethodDecl::isSynthesized to isPropertyAccessor.Jordan Rose
2012-09-13remove duplicate code.Fariborz Jahanian
2012-09-13Move back the stuff about missing ownership attribute warningFariborz Jahanian
2012-09-13Move no explicit ownership warning to SemaType.cpp.Fariborz Jahanian
2012-09-12objective-C arc: don't issue no explicit ownership warning whenFariborz Jahanian
2012-09-10More tweaking and test cases for call to superFariborz Jahanian
2012-09-07objective-C: introduce __attribute((objc_requires_super)) on methodFariborz Jahanian
2012-09-06Dont cast away const needlessly. Found by gcc48 -Wcast-qual.Roman Divacky
2012-08-30objective-C ARC: under -Wexplicit-ownership-type diagnose thoseFariborz Jahanian
2012-08-24objective-C: Do not warn if align attribute on methodFariborz Jahanian
2012-08-08objective-C: refactor/simplify parsing of delayedFariborz Jahanian
2012-08-08PR13558: Fix typo 'compatiblity'. Thinking of the children. Apparently.Richard Smith
2012-08-01Fix an assertion failure instantiating a constexpr function from within a -de...Eli Friedman
2012-07-30objective-c arc: ARC IRGen correctly assumes resultFariborz Jahanian
2012-07-13Attaching comments to declarations during parsing: handle more Objective-C de...Dmitri Gribenko
2012-07-11Enable comment parsing and semantic analysis to emit diagnostics. A fewDmitri Gribenko
2012-07-05objective-c: don't involve properties when checkingFariborz Jahanian
2012-07-03Remove a redundant assignment to the FDecl variable from *inside* it'sChandler Carruth
2012-07-02objective-c: just as we have done for method definitions,Fariborz Jahanian
2012-06-20Restructure how the driver communicates information about theJohn McCall
2012-06-14Still more Doxygen documentation fixes:James Dennett
2012-06-06Revert Decl's iterators back to pointer value_type rather than reference valu...David Blaikie
2012-05-27Use the SelectorSet typedef more widely throughout Sema.Benjamin Kramer
2012-05-17A selector match between two Objective-C methods does *not* guaranteeDouglas Gregor
2012-05-17In the override search for Objective-C methods, protect against ASTs that hav...Douglas Gregor
2012-05-09[AST/libclang] Speed up clang_getOverriddenCursors() considerably by reservin...Argyrios Kyrtzidis
2012-05-04Move Sema::RequireCompleteType() and Sema::RequireCompleteExprType()Douglas Gregor
2012-05-03Do not keep track of the set of visited Objective-C containers whenDouglas Gregor
2012-05-01Eliminate Sema::CompareMethodParamsInBaseAndSuper() entirely, byDouglas Gregor
2012-05-01The semantic checking that verifies whether an Objective-C methodDouglas Gregor
2012-04-30Remove the ref/value inconsistency in filter_decl_iterator.David Blaikie
2012-04-06Added a new attribute, objc_root_class, which informs the compiler when a roo...Patrick Beard
2012-04-05objective-c: Don't warn when a category does not implement a methodFariborz Jahanian
2012-03-23Make sure we don't accept an @interface inside another objc containerArgyrios Kyrtzidis
2012-03-13Fix PR10447: lazily building name lookup tables for DeclContexts was broken.Richard Smith
2012-03-13Fix crash at @implementation with a forward reference as base class.Argyrios Kyrtzidis
2012-03-12[Sema] -Add an invalid objc category to the DeclContext so that it can beArgyrios Kyrtzidis
2012-03-11Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie
2012-03-02[Sema] Fix crash-on-invalid-code issue:Argyrios Kyrtzidis
2012-02-29Sema/ObjC: Override search can generate a large search list, bump the base sizeDaniel Dunbar
2012-02-27After numerous requests, have Objective-C 'method declared here' notes mentio...Ted Kremenek
2012-02-23[libclang] Make sure that all top-level decls in a @implementation areArgyrios Kyrtzidis
2012-02-09objc: If a method is not implemented in the category implementation butFariborz Jahanian
2012-01-31Make the callback object to Sema::CorrectTypo mandatory.Kaelyn Uhrain
2012-01-25Whenever Sema attempts to look in the global method pool, try to loadDouglas Gregor
2012-01-25Rework the external Sema source's ReadMethodPool() so that it doesn'tDouglas Gregor
2012-01-25Factor out the addition of a method into the global method pool, andDouglas Gregor
2012-01-24objective-c: Ignore with warning forward class declaration whose nameFariborz Jahanian