diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-02-28 17:50:39 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-02-28 17:50:39 +0000 |
commit | 346088067452f37a1c1d12a37698f53068e936b5 (patch) | |
tree | fef637c37e775da9f6ba597a3b8d6f54c7bc4e24 /clang/tools/libclang/IndexingContext.h | |
parent | 93db2923dab761c986a923ef86c5b002ec6b4397 (diff) | |
download | bcm5719-llvm-346088067452f37a1c1d12a37698f53068e936b5.tar.gz bcm5719-llvm-346088067452f37a1c1d12a37698f53068e936b5.zip |
[AST] When we @synthesize a property with a user-defined ivar name,
make sure to record the source location of the ivar name.
[libclang] When indexing @synthesized objc methods, report the @implementation
as the lexical container.
Fixes rdar://10905472
llvm-svn: 151635
Diffstat (limited to 'clang/tools/libclang/IndexingContext.h')
-rw-r--r-- | clang/tools/libclang/IndexingContext.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/clang/tools/libclang/IndexingContext.h b/clang/tools/libclang/IndexingContext.h index 8463e3fedf9..d828b17ca5c 100644 --- a/clang/tools/libclang/IndexingContext.h +++ b/clang/tools/libclang/IndexingContext.h @@ -406,7 +406,8 @@ public: bool handleObjCMethod(const ObjCMethodDecl *D); bool handleSynthesizedObjCProperty(const ObjCPropertyImplDecl *D); - bool handleSynthesizedObjCMethod(const ObjCMethodDecl *D, SourceLocation Loc); + bool handleSynthesizedObjCMethod(const ObjCMethodDecl *D, SourceLocation Loc, + const DeclContext *LexicalDC); bool handleObjCProperty(const ObjCPropertyDecl *D); @@ -452,7 +453,8 @@ public: private: bool handleDecl(const NamedDecl *D, SourceLocation Loc, CXCursor Cursor, - DeclInfo &DInfo); + DeclInfo &DInfo, + const DeclContext *LexicalDC = 0); bool handleObjCContainer(const ObjCContainerDecl *D, SourceLocation Loc, CXCursor Cursor, |