@@ -73,11 +73,11 @@ */ @interface OFProperty: OFObject { OFString *_name; unsigned int _attributes; - OFString *_Nullable _getter, *_Nullable _setter; + OFString *_Nullable _getter, *_Nullable _setter, *_Nullable iVar; } /*! * @brief The name of the property. */ @@ -110,10 +110,15 @@ /*! * @brief The name of the setter. */ @property OF_NULLABLE_PROPERTY (readonly, nonatomic) OFString *setter; +/*! + * @brief The name of the backing iVar. + */ +@property OF_NULLABLE_PROPERTY (readonly, nonatomic) OFString *iVar; + - (instancetype)init OF_UNAVAILABLE; @end /*! * @class OFInstanceVariable OFIntrospection.h ObjFW/OFIntrospection.h