In Objective-C some style guides use a style where property declarations are aligned, to help with code readability. I've added an option which enable this functionality. It is disabled by default.
The option will align code so
@property(nonatomic, weak) NSNumber *text; @property(nonatomic) BOOL trueOrFalse;
becomes
@property(nonatomic, weak) NSNumber *text; @property(nonatomic) BOOL trueOrFalse;
Manuel, what was the original reason why we don't just store a pointer to the token?