We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbbd739 commit f2dbc2bCopy full SHA for f2dbc2b
README.rst
@@ -41,6 +41,8 @@ Then you can start parsing by creating your custom visitor class:
41
42
def visit_field(self, node):
43
print('start field %s visit' % node)
44
+ # Return 1 to keep visiting children, 0 to skip them
45
+ return 1
46
47
def end_visit_field(self, node):
48
print('end field %s visit' % node)
0 commit comments