IronRuby.Compiler.Ast.AttributeAccess.TransformWrite C# (CSharp) Method

TransformWrite() private method

private TransformWrite ( AstGenerator gen, System.Linq.Expressions targetValue, System.Linq.Expressions rightValue ) : Expression
gen AstGenerator
targetValue System.Linq.Expressions
rightValue System.Linq.Expressions
return System.Linq.Expressions.Expression
        internal override MSA.Expression/*!*/ TransformWrite(AstGenerator/*!*/ gen, MSA.Expression/*!*/ targetValue, MSA.Expression/*!*/ rightValue) {
            Assert.NotNull(gen, targetValue, rightValue);
            return MethodCall.TransformRead(this, gen, _qualifier.NodeType == NodeTypes.SelfReference, _name, targetValue, null, null, null, rightValue);
        }
    }