aboutsummaryrefslogtreecommitdiff
path: root/test/Index/index-suppress-refs.m
blob: 49abf50af2edade99fdf32c0d92de2da141a4081 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include "index-suppress-refs.h"

#define TYPEDEF(x) typedef int x
TYPEDEF(MyInt);

MyInt gx;

@class I;

@interface I(cat)
-(I*)meth;
@end

@class I;

// RUN: env CINDEXTEST_SUPPRESSREFS=1 c-index-test -index-file %s | FileCheck %s
// CHECK:      [indexDeclaration]: kind: objc-class | name: I
// CHECK-NEXT:      <ObjCContainerInfo>: kind: interface
// CHECK-NEXT: [indexDeclaration]: kind: typedef | name: MyInt
// CHECK-NEXT: [indexDeclaration]: kind: variable | name: gx
// CHECK-NEXT: [indexDeclaration]: kind: objc-class | name: I
// CHECK-NEXT:      <ObjCContainerInfo>: kind: forward-ref
// CHECK-NEXT: [indexDeclaration]: kind: objc-category | name: cat
// CHECK-NEXT:      <ObjCContainerInfo>: kind: interface
// CHECK-NEXT:      <ObjCCategoryInfo>: class: kind: objc-class | name: I
// CHECK-NEXT: [indexDeclaration]: kind: objc-instance-method | name: meth
// CHECK-NOT:  [indexEntityReference]: kind: objc-class | name: I
// CHECK-NOT:  [indexDeclaration]: kind: objc-class | name: I