================
@@ -300,6 +300,10 @@ makePropertyAttributesAsWritten(unsigned Attributes) {
attributesAsWritten |= ObjCPropertyAttribute::kind_class;
if (Attributes & ObjCPropertyAttribute::kind_direct)
attributesAsWritten |= ObjCPropertyAttribute::kind_direct;
+ if (Attributes & ObjCPropertyAttribute::kind_nullability)
+ attributesAsWritten |= ObjCPropertyAttribute::kind_nullability;
+ if (Attributes & ObjCPropertyAttribute::kind_null_resettable)
+ attributesAsWritten |= ObjCPropertyAttribute::kind_null_resettable;
----------------
snprajwal wrote:
Ah right, that makes sense. I'll open a follow-up PR to expand the test
coverage.
https://github.com/llvm/llvm-project/pull/179703
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits