summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/oc/issue_2629.m
blob: e690ea5833803a5ed7356652953ba157dc69c474 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@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