@@ -58,7 +58,7 @@ def getmembers_static(object, predicate=None):
5858ignore_list = ["mangled_name" , "get_address_space" , "get_typedef_name" , "tls_kind" ]
5959
6060
61- def macro (instance , object ):
61+ def define_class_using_macro (instance , object ):
6262 instance .check_functions_dict = {}
6363 instance .get_functions_dict = {}
6464 instance .properties_dict = {}
@@ -87,17 +87,17 @@ def macro(instance, object):
8787
8888class CursorKindUtils :
8989 def __init__ (self , cursor_kind : clang .CursorKind ):
90- macro (instance = self , object = cursor_kind )
90+ define_class_using_macro (instance = self , object = cursor_kind )
9191
9292
9393class CursorUtils :
9494 def __init__ (self , cursor : clang .Cursor ):
95- macro (instance = self , object = cursor )
95+ define_class_using_macro (instance = self , object = cursor )
9696
9797
9898class TypeUtils :
9999 def __init__ (self , cursor_type : clang .Type ):
100- macro (instance = self , object = cursor_type )
100+ define_class_using_macro (instance = self , object = cursor_type )
101101
102102
103103# Docstring template for the classes
0 commit comments