HomeSort by relevance Sort by last modified time
    Searched refs:_preAction (Results 1 - 2 of 2) sorted by null

  /external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
ITreeVisitorAction.cs 63 Func<object, object> _preAction;
68 _preAction = preAction;
74 if (_preAction != null)
75 return _preAction(t);
  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITreeVisitorAction.cs 65 private readonly Func<object, object> _preAction;
70 _preAction = preAction;
76 if ( _preAction != null )
77 return _preAction( t );

Completed in 1103 milliseconds