Handle() public method

Handles the evaluation of two expressions.
public Handle ( Expression left, Expression right, Value>.IDictionary symbols ) : Value
left Expression The expression on the left.
right Expression The expression on the right.
symbols Value>.IDictionary The external symbols to consider.
return Value
Exemplo n.º 1
0
        public override Value Handle(Expression left, Expression right, Dictionary <string, Value> symbols)
        {
            var bottom = _child.Handle(left, right, symbols);

            return(Assign(left, bottom, symbols));
        }