forked from OSchip/llvm-project
[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
This commit is contained in:
parent
93db2923da
commit
3460880674
|
@ -582,6 +582,8 @@ Decl *Sema::ActOnPropertyImplDecl(Scope *S,
|
|||
Diag(AtLoc, diag::error_missing_property_context);
|
||||
return 0;
|
||||
}
|
||||
if (PropertyIvarLoc.isInvalid())
|
||||
PropertyIvarLoc = PropertyLoc;
|
||||
ObjCPropertyDecl *property = 0;
|
||||
ObjCInterfaceDecl* IDecl = 0;
|
||||
// Find the class or category class where this property must have
|
||||
|
@ -729,7 +731,7 @@ Decl *Sema::ActOnPropertyImplDecl(Scope *S,
|
|||
}
|
||||
|
||||
Ivar = ObjCIvarDecl::Create(Context, ClassImpDecl,
|
||||
PropertyLoc, PropertyLoc, PropertyIvar,
|
||||
PropertyIvarLoc,PropertyIvarLoc, PropertyIvar,
|
||||
PropertyIvarType, /*Dinfo=*/0,
|
||||
ObjCIvarDecl::Private,
|
||||
(Expr *)0, true);
|
||||
|
@ -762,10 +764,8 @@ Decl *Sema::ActOnPropertyImplDecl(Scope *S,
|
|||
PropertyIvarType->getAs<ObjCObjectPointerType>(),
|
||||
IvarType->getAs<ObjCObjectPointerType>());
|
||||
else {
|
||||
SourceLocation Loc = PropertyIvarLoc;
|
||||
if (Loc.isInvalid())
|
||||
Loc = PropertyLoc;
|
||||
compat = (CheckAssignmentConstraints(Loc, PropertyIvarType, IvarType)
|
||||
compat = (CheckAssignmentConstraints(PropertyIvarLoc, PropertyIvarType,
|
||||
IvarType)
|
||||
== Compatible);
|
||||
}
|
||||
if (!compat) {
|
||||
|
|
|
@ -216,11 +216,13 @@ public:
|
|||
|
||||
if (ObjCMethodDecl *MD = PD->getGetterMethodDecl()) {
|
||||
if (MD->isSynthesized())
|
||||
IndexCtx.handleSynthesizedObjCMethod(MD, D->getLocation());
|
||||
IndexCtx.handleSynthesizedObjCMethod(MD, D->getLocation(),
|
||||
D->getLexicalDeclContext());
|
||||
}
|
||||
if (ObjCMethodDecl *MD = PD->getSetterMethodDecl()) {
|
||||
if (MD->isSynthesized())
|
||||
IndexCtx.handleSynthesizedObjCMethod(MD, D->getLocation());
|
||||
IndexCtx.handleSynthesizedObjCMethod(MD, D->getLocation(),
|
||||
D->getLexicalDeclContext());
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -257,7 +257,8 @@ void IndexingContext::handleDiagnosticSet(CXDiagnostic CXDiagSet) {
|
|||
|
||||
bool IndexingContext::handleDecl(const NamedDecl *D,
|
||||
SourceLocation Loc, CXCursor Cursor,
|
||||
DeclInfo &DInfo) {
|
||||
DeclInfo &DInfo,
|
||||
const DeclContext *LexicalDC) {
|
||||
if (!CB.indexDeclaration || !D)
|
||||
return false;
|
||||
if (D->isImplicit() && shouldIgnoreIfImplicit(D))
|
||||
|
@ -269,6 +270,9 @@ bool IndexingContext::handleDecl(const NamedDecl *D,
|
|||
|| Loc.isInvalid())
|
||||
return false;
|
||||
|
||||
if (!LexicalDC)
|
||||
LexicalDC = D->getLexicalDeclContext();
|
||||
|
||||
if (shouldSuppressRefs())
|
||||
markEntityOccurrenceInFile(D, Loc);
|
||||
|
||||
|
@ -284,7 +288,7 @@ bool IndexingContext::handleDecl(const NamedDecl *D,
|
|||
getContainerInfo(D->getDeclContext(), DInfo.SemanticContainer);
|
||||
DInfo.semanticContainer = &DInfo.SemanticContainer;
|
||||
|
||||
if (D->getLexicalDeclContext() == D->getDeclContext()) {
|
||||
if (LexicalDC == D->getDeclContext()) {
|
||||
DInfo.lexicalContainer = &DInfo.SemanticContainer;
|
||||
} else if (isTemplateImplicitInstantiation(D)) {
|
||||
// Implicit instantiations have the lexical context of where they were
|
||||
|
@ -295,7 +299,7 @@ bool IndexingContext::handleDecl(const NamedDecl *D,
|
|||
// information anyway.
|
||||
DInfo.lexicalContainer = &DInfo.SemanticContainer;
|
||||
} else {
|
||||
getContainerInfo(D->getLexicalDeclContext(), DInfo.LexicalContainer);
|
||||
getContainerInfo(LexicalDC, DInfo.LexicalContainer);
|
||||
DInfo.lexicalContainer = &DInfo.LexicalContainer;
|
||||
}
|
||||
|
||||
|
@ -510,10 +514,11 @@ bool IndexingContext::handleSynthesizedObjCProperty(
|
|||
}
|
||||
|
||||
bool IndexingContext::handleSynthesizedObjCMethod(const ObjCMethodDecl *D,
|
||||
SourceLocation Loc) {
|
||||
SourceLocation Loc,
|
||||
const DeclContext *LexicalDC) {
|
||||
DeclInfo DInfo(/*isRedeclaration=*/true, /*isDefinition=*/true,
|
||||
/*isContainer=*/false);
|
||||
return handleDecl(D, Loc, getCursor(D), DInfo);
|
||||
return handleDecl(D, Loc, getCursor(D), DInfo, LexicalDC);
|
||||
}
|
||||
|
||||
bool IndexingContext::handleObjCProperty(const ObjCPropertyDecl *D) {
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue