Closed iccir closed 8 years ago
Per http://blog.andrewmadsen.com/post/145919242155/objective-c-class-properties , class properties cannot be synthesized.
Class properties will get an explicit error message about not being supported.
Fixed by 9e0bbec2
The following valid
@property
attributes cause parse errors:nonnull
,nullable
,null_unspecified
,null_resettable
,class
For now, nullability attributes should be ignored. In the future, we may wish to take advantage of TypeScript 2.0's new nullability feature.
I need to research the new
class
attribute.