Home
last modified time | relevance | path

Searched refs:_postAction (Results 1 – 2 of 2) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DITreeVisitorAction.cs64 Func<object, object> _postAction; field in Antlr.Runtime.Tree.TreeVisitorAction
69 _postAction = postAction; in TreeVisitorAction()
82 if (_postAction != null) in Post()
83 return _postAction(t); in Post()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DITreeVisitorAction.cs66 private readonly Func<object, object> _postAction; field in Antlr.Runtime.Tree.TreeVisitorAction
71 _postAction = postAction; in TreeVisitorAction()
84 if ( _postAction != null ) in Post()
85 return _postAction( t ); in Post()