In Files

LocalJumpError

Public Instance Methods

exit_value() click to toggle source

call_seq:

local_jump_error.exit_value  => obj

Returns the exit value associated with this LocalJumpError.

                
static VALUE
localjump_xvalue(exc)
    VALUE exc;
{
    return rb_iv_get(exc, "@exit_value");
}
reason => symbol click to toggle source

The reason this block was terminated: :break, :redo, :retry, :next, :return, or :noreason.

                
static VALUE
localjump_reason(exc)
    VALUE exc;
{
    return rb_iv_get(exc, "@reason");
}
blog comments powered by Disqus