summaryrefslogtreecommitdiff
path: root/lib/Sema/SemaObjCProperty.cpp
Commit message (Expand)AuthorAgeFilesLines
* [NFCI]Create CommonAttributeInfo Type as base type of *Attr and ParsedAttr.Erich Keane2019-09-131-6/+6
* clang: Fix typo in commentNico Weber2019-08-211-1/+1
* Fix parameter name comments using clang-tidy. NFC.Rui Ueyama2019-07-161-1/+1
* Range-style std::find{,_if} -> llvm::find{,_if}. NFCFangrui Song2019-03-311-5/+4
* [Sema][ObjC] Allow silencing -Wobjc-designated-initializers warnings byAkira Hatanaka2019-03-011-0/+9
* Update the file headers across all of the LLVM projects in the monorepoChandler Carruth2019-01-191-4/+3
* [AST][NFC] Pass the AST context to one of the ctor of DeclRefExpr.Bruno Ricci2018-12-211-8/+8
* Add -Wobjc-property-assign-on-object-type.John McCall2018-09-051-0/+8
* Model type attributes as regular Attrs.Richard Smith2018-08-201-2/+2
* Revert r339623 "Model type attributes as regular Attrs."Reid Kleckner2018-08-141-2/+2
* Model type attributes as regular Attrs.Richard Smith2018-08-131-2/+2
* Port getLocEnd -> getEndLocStephen Kelly2018-08-091-2/+2
* Port getLocStart -> getBeginLocStephen Kelly2018-08-091-5/+5
* Remove trailing spaceFangrui Song2018-07-301-69/+69
* Remove \brief commands from doxygen comments.Adrian Prantl2018-05-091-2/+2
* [ObjC] The absence of ownership qualifiers on an ambiguous property leadsAlex Lorenz2018-05-021-4/+14
* Remove redundant casts. NFCGeorge Burgess IV2018-03-011-1/+1
* [Sema] Add support for flexible array members in Obj-C.Volodymyr Sapsai2017-10-231-0/+8
* [ObjC] Don't warn on readwrite properties with custom setters thatAlex Lorenz2017-10-061-1/+5
* [ObjC] Check written attributes only when synthesizing ambiguous propertyAlex Lorenz2017-08-221-2/+2
* [Sema] Silence -Wobjc-missing-property-synthesis for unavailable propertiesAlex Lorenz2017-08-151-1/+1
* [ObjC] Pick a 'readwrite' property when synthesizing ambiguousAlex Lorenz2017-07-131-27/+160
* Add a fixit for -Wobjc-protocol-property-synthesisAlex Lorenz2017-07-031-4/+10
* [Sema][ObjC] Avoid the "type of property does not match type of accessor"Alex Lorenz2017-03-301-6/+3
* [index/AST] Add references for ObjC getter=/setter= property attributes and r...Argyrios Kyrtzidis2017-03-161-10/+18
* Move checks for creation of objects of abstract class type from the variousRichard Smith2016-12-151-2/+4
* Mass-rename the handful of error_* diagnostics to err_*.Richard Smith2016-12-021-21/+21
* [ObjC] Remove _Atomic from return type and parameter type ofAkira Hatanaka2016-05-261-8/+16
* ObjectiveC Class Properties: warn if a class property accessor is mistakenly anManman Ren2016-05-181-12/+16
* ObjC class properties: add diagnostics for unimplemented class properties.Manman Ren2016-04-121-42/+62
* ObjC: add getter/setter for class properties to global pool.Manman Ren2016-03-231-0/+5
* Fix remaining Clang-tidy readability-redundant-control-flow warnings; other m...Eugene Zelenko2016-02-121-5/+0
* Class Property: warn for synthesize on a class property.Manman Ren2016-01-291-0/+4
* Class Property: change PropertyMap to include isClassProperty.Manman Ren2016-01-281-17/+28
* Class Property: class property and instance property can have the same name.Manman Ren2016-01-281-17/+26
* Class Property: create accessors (class methods) for class property.Manman Ren2016-01-271-17/+40
* Class Property: handle class properties.Manman Ren2016-01-271-2/+2
* Class Property: parse property attribute (class).Manman Ren2016-01-261-0/+5
* Use instance_properties instead of properties. NFC.Manman Ren2016-01-261-8/+8
* ObjC properties: consider ownership of properties from protocols when synthes...Douglas Gregor2015-12-181-0/+7
* Objective-C properties: merge attributes when redeclaring 'readonly' as 'read...Douglas Gregor2015-12-101-89/+158
* Objective-C properties: loosen 'atomic' checking for readonly properties.Douglas Gregor2015-12-091-20/+53
* Objective-C properties: fix bogus use of "isa<>" on a QualType.Douglas Gregor2015-12-081-6/+5
* Fix a comment typo from r251874.Nico Weber2015-12-031-1/+1
* Simplify Sema::ProcessPropertyDecl. NFCDouglas Gregor2015-11-031-21/+6
* Stop back-patching 'readonly' Objective-C properties with 'readwrite' ones.Douglas Gregor2015-11-031-176/+136
* Be more conservative about diagnosing "incorrect" uses of __weak:John McCall2015-10-271-51/+76
* Define weak and __weak to mean ARC-style weak references, even in MRC.John McCall2015-10-221-38/+44
* Fix inference of _Nullable for weak Objective-C properties.Douglas Gregor2015-10-091-8/+1
* Replace double negation of !FileID.isInvalid() with FileID.isValid().Yaron Keren2015-10-031-1/+1