예제 #1
0
 protected object GetValue(BaseNode node, object context, EvaluationContext evalContext)
 {
     return(node.Get(context, evalContext));
 }
예제 #2
0
 /// <summary>
 /// Evaluates this node, switching local variables map to the ones specified in <paramref name="arguments"/>.
 /// </summary>
 protected object GetValueWithArguments(BaseNode node, object context, EvaluationContext evalContext, object[] arguments)
 {
     return(node.Get(context, evalContext, arguments));
 }