We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4921b17 commit 798c5baCopy full SHA for 798c5ba
1 file changed
clang_bind/parse.py
@@ -8,7 +8,8 @@ class Node:
8
def __init__(self, cursor, verbose=False):
9
self.cursor = cursor
10
if verbose:
11
- # checks available in cindex.py via clang_utils.py
+ # Add additional information about the cursor
12
+ # Get values from the classes in cindex.py: `is_` methods, `get_` methods, @property values
13
self.cursor_kind = ClangUtils(cursor.kind).get_all_functions_dict()
14
self.cursor = ClangUtils(cursor).get_all_functions_dict()
15
self.type = ClangUtils(cursor.type).get_all_functions_dict()
0 commit comments