IronPython.Compiler.Ast.AssignmentStatement.Reduce C# (CSharp) Method

Reduce() public method

public Reduce ( ) : Expression
return System.Linq.Expressions.Expression
        public override MSAst.Expression Reduce() {
            if (_left.Length == 1) {
                // Do not need temps for simple assignment
                return AssignOne();
            } else {
                return AssignComplex(_right);
            }
        }