diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2007-09-26 18:27:25 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2007-09-26 18:27:25 +0000 |
commit | d0b90bff98bafb72ea9809f509bf37c93c60e74e (patch) | |
tree | d24b1c4e75fd7cca92f339e0735ef44e6c33e201 /include/clang/Parse/Action.h | |
parent | 095ffca8c5f69df5826fea8714b7f50a1313d7c6 (diff) |
This patch inserts ivars declared in @implementation in its object and verifies
that they conform(in type, name and numbers) to those declared in @interface.
Test case highlights kind of checking we do here.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42360 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Parse/Action.h')
-rw-r--r-- | include/clang/Parse/Action.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h index fe902fc00f..bc14226bec 100644 --- a/include/clang/Parse/Action.h +++ b/include/clang/Parse/Action.h @@ -448,6 +448,10 @@ public: DeclTy **allMethods, unsigned allNum) { return; } + virtual void ActOnImpleIvarVsClassIvars(DeclTy *ClassDecl, + DeclTy **Fields, unsigned NumFields) { + return; + } virtual DeclTy *ObjcStartProtoInterface(Scope* S, SourceLocation AtProtoInterfaceLoc, IdentifierInfo *ProtocolName, SourceLocation ProtocolLoc, |