Skip to content

Commit 798c5ba

Browse files
committed
[parse.py] add comments
1 parent 4921b17 commit 798c5ba

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

clang_bind/parse.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ class Node:
88
def __init__(self, cursor, verbose=False):
99
self.cursor = cursor
1010
if verbose:
11-
# checks available in cindex.py via clang_utils.py
11+
# Add additional information about the cursor
12+
# Get values from the classes in cindex.py: `is_` methods, `get_` methods, @property values
1213
self.cursor_kind = ClangUtils(cursor.kind).get_all_functions_dict()
1314
self.cursor = ClangUtils(cursor).get_all_functions_dict()
1415
self.type = ClangUtils(cursor.type).get_all_functions_dict()

0 commit comments

Comments
 (0)