Home | History | Annotate | Download | only in antlr3

Lines Matching refs:post_action

2410     def visit(self, t, pre_action=None, post_action=None):
2419 callables 'pre_action' and 'post_action' instead of a class instance
2433 self.visit(child, pre_action, post_action)
2436 if post_action is not None and not isNil:
2437 t = post_action(t)