Home
last modified time | relevance | path

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

/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DITreeVisitorAction.cs63 Func<object, object> _preAction; field in Antlr.Runtime.Tree.TreeVisitorAction
68 _preAction = preAction; in TreeVisitorAction()
74 if (_preAction != null) in Pre()
75 return _preAction(t); in Pre()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DITreeVisitorAction.cs65 private readonly Func<object, object> _preAction; field in Antlr.Runtime.Tree.TreeVisitorAction
70 _preAction = preAction; in TreeVisitorAction()
76 if ( _preAction != null ) in Pre()
77 return _preAction( t ); in Pre()