IronRuby.Compiler.Ast.RescueExpression.ToBody C# (CSharp) Метод

ToBody() приватный Метод

private ToBody ( AstGenerator gen ) : Body
gen AstGenerator
Результат Body
        private Body/*!*/ ToBody(AstGenerator/*!*/ gen) {
            return new Body(
                new Statements(_guardedExpression),
                CollectionUtils.MakeList(new RescueClause(Expression.EmptyArray, null, new Statements(_rescueClauseStatement), _rescueSpan)),
            null, null, Location);
        }