15
15
16
16
#include " clang/AST/Decl.h"
17
17
#include " clang/AST/DeclBase.h"
18
+ #include " clang/AST/DeclObjCCommon.h"
18
19
#include " clang/AST/ExternalASTSource.h"
19
20
#include " clang/AST/Redeclarable.h"
20
21
#include " clang/AST/SelectorLocationsKind.h"
@@ -742,34 +743,6 @@ class ObjCPropertyDecl : public NamedDecl {
742
743
void anchor () override ;
743
744
744
745
public:
745
- enum PropertyAttributeKind {
746
- OBJC_PR_noattr = 0x00 ,
747
- OBJC_PR_readonly = 0x01 ,
748
- OBJC_PR_getter = 0x02 ,
749
- OBJC_PR_assign = 0x04 ,
750
- OBJC_PR_readwrite = 0x08 ,
751
- OBJC_PR_retain = 0x10 ,
752
- OBJC_PR_copy = 0x20 ,
753
- OBJC_PR_nonatomic = 0x40 ,
754
- OBJC_PR_setter = 0x80 ,
755
- OBJC_PR_atomic = 0x100 ,
756
- OBJC_PR_weak = 0x200 ,
757
- OBJC_PR_strong = 0x400 ,
758
- OBJC_PR_unsafe_unretained = 0x800 ,
759
- // / Indicates that the nullability of the type was spelled with a
760
- // / property attribute rather than a type qualifier.
761
- OBJC_PR_nullability = 0x1000 ,
762
- OBJC_PR_null_resettable = 0x2000 ,
763
- OBJC_PR_class = 0x4000 ,
764
- OBJC_PR_direct = 0x8000
765
- // Adding a property should change NumPropertyAttrsBits
766
- };
767
-
768
- enum {
769
- // / Number of bits fitting all the property attributes.
770
- NumPropertyAttrsBits = 16
771
- };
772
-
773
746
enum SetterKind { Assign, Retain, Copy, Weak };
774
747
enum PropertyControl { None, Required, Optional };
775
748
@@ -782,8 +755,8 @@ class ObjCPropertyDecl : public NamedDecl {
782
755
783
756
QualType DeclType;
784
757
TypeSourceInfo *DeclTypeSourceInfo;
785
- unsigned PropertyAttributes : NumPropertyAttrsBits ;
786
- unsigned PropertyAttributesAsWritten : NumPropertyAttrsBits ;
758
+ unsigned PropertyAttributes : NumObjCPropertyAttrsBits ;
759
+ unsigned PropertyAttributesAsWritten : NumObjCPropertyAttrsBits ;
787
760
788
761
// \@required/\@optional
789
762
unsigned PropertyImplementation : 2 ;
@@ -810,15 +783,14 @@ class ObjCPropertyDecl : public NamedDecl {
810
783
ObjCIvarDecl *PropertyIvarDecl = nullptr ;
811
784
812
785
ObjCPropertyDecl (DeclContext *DC, SourceLocation L, IdentifierInfo *Id,
813
- SourceLocation AtLocation, SourceLocation LParenLocation,
814
- QualType T, TypeSourceInfo *TSI,
815
- PropertyControl propControl)
816
- : NamedDecl(ObjCProperty, DC, L, Id), AtLoc(AtLocation),
817
- LParenLoc (LParenLocation), DeclType(T), DeclTypeSourceInfo(TSI),
818
- PropertyAttributes(OBJC_PR_noattr),
819
- PropertyAttributesAsWritten(OBJC_PR_noattr),
820
- PropertyImplementation(propControl), GetterName(Selector()),
821
- SetterName(Selector()) {}
786
+ SourceLocation AtLocation, SourceLocation LParenLocation,
787
+ QualType T, TypeSourceInfo *TSI, PropertyControl propControl)
788
+ : NamedDecl(ObjCProperty, DC, L, Id), AtLoc(AtLocation),
789
+ LParenLoc (LParenLocation), DeclType(T), DeclTypeSourceInfo(TSI),
790
+ PropertyAttributes(ObjCPropertyAttribute::kind_noattr),
791
+ PropertyAttributesAsWritten(ObjCPropertyAttribute::kind_noattr),
792
+ PropertyImplementation(propControl), GetterName(Selector()),
793
+ SetterName(Selector()) {}
822
794
823
795
public:
824
796
static ObjCPropertyDecl *Create (ASTContext &C, DeclContext *DC,
@@ -850,47 +822,52 @@ class ObjCPropertyDecl : public NamedDecl {
850
822
// / type.
851
823
QualType getUsageType (QualType objectType) const ;
852
824
853
- PropertyAttributeKind getPropertyAttributes () const {
854
- return PropertyAttributeKind (PropertyAttributes);
825
+ ObjCPropertyAttribute::Kind getPropertyAttributes () const {
826
+ return ObjCPropertyAttribute::Kind (PropertyAttributes);
855
827
}
856
828
857
- void setPropertyAttributes (PropertyAttributeKind PRVal) {
829
+ void setPropertyAttributes (ObjCPropertyAttribute::Kind PRVal) {
858
830
PropertyAttributes |= PRVal;
859
831
}
860
832
861
833
void overwritePropertyAttributes (unsigned PRVal) {
862
834
PropertyAttributes = PRVal;
863
835
}
864
836
865
- PropertyAttributeKind getPropertyAttributesAsWritten () const {
866
- return PropertyAttributeKind (PropertyAttributesAsWritten);
837
+ ObjCPropertyAttribute::Kind getPropertyAttributesAsWritten () const {
838
+ return ObjCPropertyAttribute::Kind (PropertyAttributesAsWritten);
867
839
}
868
840
869
- void setPropertyAttributesAsWritten (PropertyAttributeKind PRVal) {
841
+ void setPropertyAttributesAsWritten (ObjCPropertyAttribute::Kind PRVal) {
870
842
PropertyAttributesAsWritten = PRVal;
871
843
}
872
844
873
845
// Helper methods for accessing attributes.
874
846
875
847
// / isReadOnly - Return true iff the property has a setter.
876
848
bool isReadOnly () const {
877
- return (PropertyAttributes & OBJC_PR_readonly );
849
+ return (PropertyAttributes & ObjCPropertyAttribute::kind_readonly );
878
850
}
879
851
880
852
// / isAtomic - Return true if the property is atomic.
881
853
bool isAtomic () const {
882
- return (PropertyAttributes & OBJC_PR_atomic );
854
+ return (PropertyAttributes & ObjCPropertyAttribute::kind_atomic );
883
855
}
884
856
885
857
// / isRetaining - Return true if the property retains its value.
886
858
bool isRetaining () const {
887
- return (PropertyAttributes &
888
- (OBJC_PR_retain | OBJC_PR_strong | OBJC_PR_copy));
859
+ return (PropertyAttributes & (ObjCPropertyAttribute::kind_retain |
860
+ ObjCPropertyAttribute::kind_strong |
861
+ ObjCPropertyAttribute::kind_copy));
889
862
}
890
863
891
864
bool isInstanceProperty () const { return !isClassProperty (); }
892
- bool isClassProperty () const { return PropertyAttributes & OBJC_PR_class; }
893
- bool isDirectProperty () const { return PropertyAttributes & OBJC_PR_direct; }
865
+ bool isClassProperty () const {
866
+ return PropertyAttributes & ObjCPropertyAttribute::kind_class;
867
+ }
868
+ bool isDirectProperty () const {
869
+ return PropertyAttributes & ObjCPropertyAttribute::kind_direct;
870
+ }
894
871
895
872
ObjCPropertyQueryKind getQueryKind () const {
896
873
return isClassProperty () ? ObjCPropertyQueryKind::OBJC_PR_query_class :
@@ -906,13 +883,13 @@ class ObjCPropertyDecl : public NamedDecl {
906
883
// / the property setter. This is only valid if the property has been
907
884
// / defined to have a setter.
908
885
SetterKind getSetterKind () const {
909
- if (PropertyAttributes & OBJC_PR_strong )
886
+ if (PropertyAttributes & ObjCPropertyAttribute::kind_strong )
910
887
return getType ()->isBlockPointerType () ? Copy : Retain;
911
- if (PropertyAttributes & OBJC_PR_retain )
888
+ if (PropertyAttributes & ObjCPropertyAttribute::kind_retain )
912
889
return Retain;
913
- if (PropertyAttributes & OBJC_PR_copy )
890
+ if (PropertyAttributes & ObjCPropertyAttribute::kind_copy )
914
891
return Copy;
915
- if (PropertyAttributes & OBJC_PR_weak )
892
+ if (PropertyAttributes & ObjCPropertyAttribute::kind_weak )
916
893
return Weak;
917
894
return Assign;
918
895
}
0 commit comments