protected object GetValue(BaseNode node, object context, EvaluationContext evalContext) { return(node.Get(context, evalContext)); }
protected object GetValue(BaseNode node, object context, EvaluationContext evalContext) { return node.Get(context, evalContext); }
/// <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)); }
/// <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); }