Fix <rdar://problem/6697053> instance variable is protected.

Treat @package the same as @public. The documentation for @package says it is analogous to private_extern for variables/functions. Fully implementing this requires some kind of linker support (so access is denied to code outside the classes executable image). I don't believe GCC fully implements this semantic. Will discuss with Fariborz offline.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67755 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Steve Naroff 2009-03-26 16:01:08 +00:00
Родитель d73fe9b70c
Коммит 8bfd1b8c36
2 изменённых файлов: 47 добавлений и 1 удалений

Просмотреть файл

@ -1876,7 +1876,8 @@ Sema::ActOnMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc,
// Check whether we can reference this field.
if (DiagnoseUseOfDecl(IV, MemberLoc))
return ExprError();
if (IV->getAccessControl() != ObjCIvarDecl::Public) {
if (IV->getAccessControl() != ObjCIvarDecl::Public &&
IV->getAccessControl() != ObjCIvarDecl::Package) {
ObjCInterfaceDecl *ClassOfMethodDecl = 0;
if (ObjCMethodDecl *MD = getCurMethodDecl())
ClassOfMethodDecl = MD->getClassInterface();

Просмотреть файл

@ -0,0 +1,45 @@
// RUN: clang-cc -fsyntax-only -verify %s
typedef unsigned char BOOL;
@interface NSObject {
id isa;
}
+new;
+alloc;
-init;
-autorelease;
@end
@interface NSAutoreleasePool : NSObject
- drain;
@end
@interface A : NSObject {
@package
id object;
}
@end
@interface B : NSObject
- (BOOL)containsSelf:(A*)a;
@end
@implementation A
@end
@implementation B
- (BOOL)containsSelf:(A*)a {
return a->object == self;
}
@end
int main (int argc, const char * argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
A *a = [[A new] autorelease];
B *b = [[B new] autorelease];
NSLog(@"%s", [b containsSelf:a] ? "YES" : "NO");
[pool drain];
return 0;
}