@@ -3969,6 +3969,7 @@ def set_property(self, property, value):
3969
3969
("clang_equalRanges" , [SourceRange , SourceRange ], bool ),
3970
3970
("clang_equalTypes" , [Type , Type ], bool ),
3971
3971
("clang_formatDiagnostic" , [Diagnostic , c_uint ], _CXString ),
3972
+ ("clang_getAddressSpace" , [Type ], c_uint ),
3972
3973
("clang_getArgType" , [Type , c_uint ], Type ),
3973
3974
("clang_getArrayElementType" , [Type ], Type ),
3974
3975
("clang_getArraySize" , [Type ], c_longlong ),
@@ -3987,8 +3988,10 @@ def set_property(self, property, value):
3987
3988
("clang_getCursorAvailability" , [Cursor ], c_int ),
3988
3989
("clang_getCursorDefinition" , [Cursor ], Cursor ),
3989
3990
("clang_getCursorDisplayName" , [Cursor ], _CXString ),
3991
+ ("clang_getCursorExceptionSpecificationType" , [Cursor ], c_int ),
3990
3992
("clang_getCursorExtent" , [Cursor ], SourceRange ),
3991
3993
("clang_getCursorLexicalParent" , [Cursor ], Cursor ),
3994
+ ("clang_getCursorLinkage" , [Cursor ], c_int ),
3992
3995
("clang_getCursorLocation" , [Cursor ], SourceLocation ),
3993
3996
("clang_getCursorPrettyPrinted" , [Cursor , PrintingPolicy ], _CXString ),
3994
3997
("clang_getCursorPrintingPolicy" , [Cursor ], c_object_p ),
@@ -3997,6 +4000,7 @@ def set_property(self, property, value):
3997
4000
("clang_getCursorResultType" , [Cursor ], Type ),
3998
4001
("clang_getCursorSemanticParent" , [Cursor ], Cursor ),
3999
4002
("clang_getCursorSpelling" , [Cursor ], _CXString ),
4003
+ ("clang_getCursorTLSKind" , [Cursor ], c_int ),
4000
4004
("clang_getCursorType" , [Cursor ], Type ),
4001
4005
("clang_getCursorUSR" , [Cursor ], _CXString ),
4002
4006
("clang_Cursor_getMangling" , [Cursor ], _CXString ),
@@ -4022,6 +4026,7 @@ def set_property(self, property, value):
4022
4026
("clang_getEnumConstantDeclUnsignedValue" , [Cursor ], c_ulonglong ),
4023
4027
("clang_getEnumConstantDeclValue" , [Cursor ], c_longlong ),
4024
4028
("clang_getEnumDeclIntegerType" , [Cursor ], Type ),
4029
+ ("clang_getExceptionSpecificationType" , [Type ], c_int ),
4025
4030
("clang_getFile" , [TranslationUnit , c_interop_string ], c_object_p ),
4026
4031
("clang_getFileName" , [File ], _CXString ),
4027
4032
("clang_getFileTime" , [File ], c_uint ),
@@ -4118,6 +4123,7 @@ def set_property(self, property, value):
4118
4123
("clang_Cursor_getBriefCommentText" , [Cursor ], _CXString ),
4119
4124
("clang_Cursor_getRawCommentText" , [Cursor ], _CXString ),
4120
4125
("clang_Cursor_getOffsetOfField" , [Cursor ], c_longlong ),
4126
+ ("clang_Cursor_getStorageClass" , [Cursor ], c_int ),
4121
4127
("clang_Cursor_isAnonymous" , [Cursor ], bool ),
4122
4128
("clang_Cursor_isAnonymousRecordDecl" , [Cursor ], bool ),
4123
4129
("clang_Cursor_isBitField" , [Cursor ], bool ),
0 commit comments