aboutsummaryrefslogtreecommitdiff
path: root/include/clang-c
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2011-10-18 15:50:50 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2011-10-18 15:50:50 +0000
commitaca19be8731fc31cff68702de0dc7f30ce908979 (patch)
treea855dddb91eca1455fe966640dda8faa28bf437a /include/clang-c
parentc0f5b754eacfd0d1cb5338e048850e5d29ca42f7 (diff)
[libclang] Index implicit property references.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@142355 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang-c')
-rw-r--r--include/clang-c/Index.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h
index d45830ef91..e8e37a3d0b 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -4051,12 +4051,18 @@ typedef struct {
CXIdxLoc endLoc;
} CXIdxEndContainerInfo;
+typedef enum {
+ CXIdxEntityRef_Direct = 1,
+ CXIdxEntityRef_ImplicitProperty = 2
+} CXIdxEntityRefKind;
+
typedef struct {
CXCursor cursor;
CXIdxLoc loc;
CXIdxEntity referencedEntity;
CXIdxEntity parentEntity;
CXIdxContainer container;
+ CXIdxEntityRefKind kind;
} CXIdxEntityRefInfo;
typedef struct {