Searched refs:pre_action (Results 1 – 3 of 3) sorted by relevance
/external/antlr/runtime/Ruby/lib/antlr3/tree/ |
D | visitor.rb | 58 def pre_action( &block ) method in ANTLR3.AST.Visitor 68 def visit( tree, pre_action = nil, post_action = nil ) argument 70 before = pre_action || @pre_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 2411 if pre_action is not None and not isNil: 2413 t = pre_action(t) 2418 self.visit(child, pre_action, post_action)
|
/external/antlr/runtime/Python/antlr3/ |
D | tree.py | 2410 def visit(self, t, pre_action=None, post_action=None): argument 2426 if pre_action is not None and not isNil: 2428 t = pre_action(t) 2433 self.visit(child, pre_action, post_action)
|