if (!context.runtime.is1_9()) b.type = Block.Type.NORMAL;
if (yieldArg == UndefinedValue.UNDEFINED) {
return b.yieldSpecific(context);
} else {
IRubyObject yieldVal = (IRubyObject)yieldArg.retrieve(context, self, currDynScope, temp);
return (unwrapArray && (yieldVal instanceof RubyArray)) ? b.yieldArray(context, yieldVal, null, null) : b.yield(context, yieldVal);
}
}
@Override
public void visit(IRVisitor visitor) {