You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.8 KiB
72 lines
1.8 KiB
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "FakeComponentKitHeader.h"
|
|
|
|
@interface FooComponent : CKCompositeComponent
|
|
@end
|
|
|
|
@implementation FooComponent
|
|
+ (instancetype)newDerp {
|
|
dispatch_async( // error
|
|
dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),
|
|
^{
|
|
// do something
|
|
});
|
|
dispatch_sync( // error
|
|
dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),
|
|
^{
|
|
// do something
|
|
});
|
|
dispatch_after( // error
|
|
DISPATCH_TIME_NOW,
|
|
dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),
|
|
^{
|
|
// do something
|
|
});
|
|
// make sure nested things are caught
|
|
^{
|
|
dispatch_sync( // error
|
|
dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),
|
|
^{
|
|
^{
|
|
dispatch_async( // error
|
|
dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),
|
|
^{
|
|
// do something
|
|
});
|
|
}();
|
|
});
|
|
}();
|
|
return nil;
|
|
}
|
|
|
|
- (void)derp {
|
|
// not an error (only run on factory functions)
|
|
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),
|
|
^{
|
|
// do something
|
|
});
|
|
}
|
|
@end
|
|
|
|
@interface BarComponent : NSObject // not a real component
|
|
@end
|
|
|
|
@implementation BarComponent
|
|
+ (instancetype)newDerp {
|
|
// not an error (only run on actual components)
|
|
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),
|
|
^{
|
|
// do something
|
|
});
|
|
return nil;
|
|
}
|
|
@end
|