forked from OSchip/llvm-project
[libclang] Introduce clang_Cursor_isVariadic, which returns non-zero if the given cursor is a variadic function or method.
rdar://13667150 llvm-svn: 179819
This commit is contained in:
parent
d5d6f3d5a2
commit
23814e4f49
|
@ -3409,6 +3409,11 @@ typedef enum {
|
||||||
*/
|
*/
|
||||||
CINDEX_LINKAGE unsigned clang_Cursor_getObjCDeclQualifiers(CXCursor C);
|
CINDEX_LINKAGE unsigned clang_Cursor_getObjCDeclQualifiers(CXCursor C);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Returns non-zero if the given cursor is a variadic function or method.
|
||||||
|
*/
|
||||||
|
CINDEX_LINKAGE unsigned clang_Cursor_isVariadic(CXCursor C);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Given a cursor that represents a declaration, return the associated
|
* \brief Given a cursor that represents a declaration, return the associated
|
||||||
* comment's source range. The range may include multiple consecutive comments
|
* comment's source range. The range may include multiple consecutive comments
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
@property (readonly) id x;
|
@property (readonly) id x;
|
||||||
-(int) mymethod;
|
-(int) mymethod;
|
||||||
-(const id) mymethod2:(id)x blah:(Class)y boo:(SEL)z;
|
-(const id) mymethod2:(id)x blah:(Class)y boo:(SEL)z;
|
||||||
-(bycopy)methodIn:(in int)i andOut:(out short *)j;
|
-(bycopy)methodIn:(in int)i andOut:(out short *)j , ...;
|
||||||
@end
|
@end
|
||||||
|
|
||||||
// RUN: c-index-test -test-print-type %s | FileCheck %s
|
// RUN: c-index-test -test-print-type %s | FileCheck %s
|
||||||
|
@ -10,6 +10,6 @@
|
||||||
// CHECK: ObjCInstanceMethodDecl=mymethod:3:8 [type=] [typekind=Invalid] [resulttype=int] [resulttypekind=Int] [isPOD=0]
|
// CHECK: ObjCInstanceMethodDecl=mymethod:3:8 [type=] [typekind=Invalid] [resulttype=int] [resulttypekind=Int] [isPOD=0]
|
||||||
// CHECK: ObjCInstanceMethodDecl=mymethod2:blah:boo::4:13 [type=] [typekind=Invalid] [resulttype=const id] [resulttypekind=ObjCId] [args= [id] [ObjCId] [Class] [ObjCClass] [SEL] [ObjCSel]] [isPOD=0]
|
// CHECK: ObjCInstanceMethodDecl=mymethod2:blah:boo::4:13 [type=] [typekind=Invalid] [resulttype=const id] [resulttypekind=ObjCId] [args= [id] [ObjCId] [Class] [ObjCClass] [SEL] [ObjCSel]] [isPOD=0]
|
||||||
// CHECK: ParmDecl=z:4:52 (Definition) [type=SEL] [typekind=ObjCSel] [canonicaltype=SEL *] [canonicaltypekind=Pointer] [isPOD=1]
|
// CHECK: ParmDecl=z:4:52 (Definition) [type=SEL] [typekind=ObjCSel] [canonicaltype=SEL *] [canonicaltypekind=Pointer] [isPOD=1]
|
||||||
// CHECK: ObjCInstanceMethodDecl=methodIn:andOut::5:10 [Bycopy,] [type=] [typekind=Invalid] [resulttype=id] [resulttypekind=ObjCId] [args= [int] [Int] [short *] [Pointer]] [isPOD=0]
|
// CHECK: ObjCInstanceMethodDecl=methodIn:andOut::5:10 (variadic) [Bycopy,] [type=] [typekind=Invalid] [resulttype=id] [resulttypekind=ObjCId] [args= [int] [Int] [short *] [Pointer]] [isPOD=0]
|
||||||
// CHECK: ParmDecl=i:5:27 (Definition) [In,] [type=int] [typekind=Int] [isPOD=1]
|
// CHECK: ParmDecl=i:5:27 (Definition) [In,] [type=int] [typekind=Int] [isPOD=1]
|
||||||
// CHECK: ParmDecl=j:5:49 (Definition) [Out,] [type=short *] [typekind=Pointer] [isPOD=1]
|
// CHECK: ParmDecl=j:5:49 (Definition) [Out,] [type=short *] [typekind=Pointer] [isPOD=1]
|
||||||
|
|
|
@ -695,6 +695,9 @@ static void PrintCursor(CXCursor Cursor,
|
||||||
if (clang_CXXMethod_isVirtual(Cursor))
|
if (clang_CXXMethod_isVirtual(Cursor))
|
||||||
printf(" (virtual)");
|
printf(" (virtual)");
|
||||||
|
|
||||||
|
if (clang_Cursor_isVariadic(Cursor))
|
||||||
|
printf(" (variadic)");
|
||||||
|
|
||||||
if (Cursor.kind == CXCursor_IBOutletCollectionAttr) {
|
if (Cursor.kind == CXCursor_IBOutletCollectionAttr) {
|
||||||
CXType T =
|
CXType T =
|
||||||
clang_getCanonicalType(clang_getIBOutletCollectionType(Cursor));
|
clang_getCanonicalType(clang_getIBOutletCollectionType(Cursor));
|
||||||
|
|
|
@ -5972,6 +5972,19 @@ unsigned clang_Cursor_getObjCDeclQualifiers(CXCursor C) {
|
||||||
return Result;
|
return Result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unsigned clang_Cursor_isVariadic(CXCursor C) {
|
||||||
|
if (!clang_isDeclaration(C.kind))
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
const Decl *D = getCursorDecl(C);
|
||||||
|
if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
|
||||||
|
return FD->isVariadic();
|
||||||
|
if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
|
||||||
|
return MD->isVariadic();
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
CXSourceRange clang_Cursor_getCommentRange(CXCursor C) {
|
CXSourceRange clang_Cursor_getCommentRange(CXCursor C) {
|
||||||
if (!clang_isDeclaration(C.kind))
|
if (!clang_isDeclaration(C.kind))
|
||||||
return clang_getNullRange();
|
return clang_getNullRange();
|
||||||
|
|
|
@ -19,6 +19,7 @@ clang_Cursor_getReceiverType
|
||||||
clang_Cursor_isBitField
|
clang_Cursor_isBitField
|
||||||
clang_Cursor_isDynamicCall
|
clang_Cursor_isDynamicCall
|
||||||
clang_Cursor_isNull
|
clang_Cursor_isNull
|
||||||
|
clang_Cursor_isVariadic
|
||||||
clang_Cursor_getModule
|
clang_Cursor_getModule
|
||||||
clang_Module_getParent
|
clang_Module_getParent
|
||||||
clang_Module_getName
|
clang_Module_getName
|
||||||
|
|
Loading…
Reference in New Issue