Ejemplo n.º 1
0
        public override RuntimeValueNode Evaluate()
        {
            var l = new RuntimeExpression(
                Operator.Left,
                RuntimeScope
                ).Evaluate();
            var r = new RuntimeExpression(
                Operator.Right,
                RuntimeScope
                ).Evaluate();

            return(l.OpDivide(r));
        }