Searched defs:_preAction (Results 1 - 2 of 2) sorted by relevance

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

Completed in 89 milliseconds