diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-11-18 16:26:39 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-11-18 16:26:39 +0000 |
commit | 49c22a74eb51f0a9d20cd72e5bc8dc995fc993ca (patch) | |
tree | 7e93844b1d93c6a6f58c14d4703383c7fcc7bccd /clang/lib/Sema/Sema.h | |
parent | c14422223b7b0d504c6fc39e5180809b41c2932d (diff) | |
download | bcm5719-llvm-49c22a74eb51f0a9d20cd72e5bc8dc995fc993ca.tar.gz bcm5719-llvm-49c22a74eb51f0a9d20cd72e5bc8dc995fc993ca.zip |
Code completion for Objective-C class names after @interface,
@implementation, and in the declaration of the superclass of an
@interface.
llvm-svn: 89207
Diffstat (limited to 'clang/lib/Sema/Sema.h')
-rw-r--r-- | clang/lib/Sema/Sema.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/clang/lib/Sema/Sema.h b/clang/lib/Sema/Sema.h index 3e186b2b5be..ae5304de44e 100644 --- a/clang/lib/Sema/Sema.h +++ b/clang/lib/Sema/Sema.h @@ -3645,7 +3645,11 @@ public: virtual void CodeCompleteObjCProtocolReferences(IdentifierLocPair *Protocols, unsigned NumProtocols); virtual void CodeCompleteObjCProtocolDecl(Scope *S); - //@} + virtual void CodeCompleteObjCInterfaceDecl(Scope *S); + virtual void CodeCompleteObjCSuperclass(Scope *S, + IdentifierInfo *ClassName); + virtual void CodeCompleteObjCImplementationDecl(Scope *S); + //@} //===--------------------------------------------------------------------===// // Extra semantic analysis beyond the C type system |