summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/oc/50804-issue_2629.m
blob: 6d6cbf30650cdd14f4f34e588ebd5aec74ec6862 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@implementation SomeClass
- (void)someMethod {
    enumerateItems(
        ^(NSInteger section) {
    });
}

- (void)someOtherMethod {
    items.enumerateItems(
        ^(NSInteger section, NSInteger index, id<NSObject> object, BOOL *stop) {
        enumerator(index, object, TypeInsert);
    },
        nil,
        some_param
        );
}

@end