Searched refs:post_action (Results 1 – 3 of 3) sorted by relevance
/external/antlr/runtime/Ruby/lib/antlr3/tree/ |
D | visitor.rb | 63 def post_action( &block ) method in ANTLR3.AST.Visitor 68 def visit( tree, pre_action = nil, post_action = nil ) argument 71 after = post_action || @post_action 76 visit( child, pre_action, post_action )
|
/external/antlr/runtime/Python3/antlr3/ |
D | tree.py | 2395 def visit(self, t, pre_action=None, post_action=None): argument 2418 self.visit(child, pre_action, post_action) 2421 if post_action is not None and not isNil: 2422 t = post_action(t)
|
/external/antlr/runtime/Python/antlr3/ |
D | tree.py | 2410 def visit(self, t, pre_action=None, post_action=None): argument 2433 self.visit(child, pre_action, post_action) 2436 if post_action is not None and not isNil: 2437 t = post_action(t)
|