tomaz / appledoc

Objective-c code Apple style documentation set generator.
http://gentlebytes.com
4.19k stars 644 forks source link

Handling of __deprecated #616

Closed neilyoung closed 7 years ago

neilyoung commented 7 years ago

Could you please double check the handling of __deprecated?

I'm having a property, which I would like to deprecate

@property (nonatomic, assign) double strideLength __deprecated;

The compiler does recognize it correctly and demands deprecation every now and then. In the generated doc the property strideLength is now appearing as__deprecated and the initial name is lost

neilyoung commented 7 years ago

Changed the order. Works

@property (nonatomic, assign) double __deprecated strideLength;