"Anonymous" private categories (new in Objective-C 2.0) are a better fit for
private methods because they provide an indication to the compiler of what
methods are expected to be implemented, not just those that "might" be
implemented elsewhere (and available at runtime).
Signed-off-by: Wincent Colaiuta <win@wincent.com>
-@interface NSMethodSignature (WOPrivate)
+@interface NSMethodSignature ()
- (id)initWithObjCTypes:(const char *)types;
- (id)initWithObjCTypes:(const char *)types;
-@interface WOTest (WOPrivate)
- (void)installLowLevelExceptionHandler;
- (void)removeLowLevelExceptionHandler;
- (void)installLowLevelExceptionHandler;
- (void)removeLowLevelExceptionHandler;