IronRuby.Compiler.Ast.InstanceVariable.TransformWriteVariable C# (CSharp) Method

TransformWriteVariable() private method

private TransformWriteVariable ( AstGenerator gen, System.Linq.Expressions rightValue ) : Expression
gen AstGenerator
rightValue System.Linq.Expressions
return System.Linq.Expressions.Expression
        internal override MSA.Expression/*!*/ TransformWriteVariable(AstGenerator/*!*/ gen, MSA.Expression/*!*/ rightValue) {
            return Methods.SetInstanceVariable.OpCall(gen.CurrentSelfVariable, AstUtils.Box(rightValue), gen.CurrentScopeVariable, AstUtils.Constant(Name));
        }