IronRuby.Compiler.Ast.ArrayItemAccess.TransformRead C# (CSharp) Method

TransformRead() private method

private TransformRead ( AstGenerator gen, System.Linq.Expressions targetValue, bool tryRead ) : Expression
gen AstGenerator
targetValue System.Linq.Expressions
tryRead bool
return System.Linq.Expressions.Expression
        internal override MSA.Expression/*!*/ TransformRead(AstGenerator/*!*/ gen, MSA.Expression targetValue, bool tryRead) {
            Assert.NotNull(gen, targetValue);
            return MethodCall.TransformRead(this, gen, false, "[]", targetValue, _arguments, _block, null, null);
        }