Method: LocalJumpError#reason
- Defined in:
- proc.c
#reason ⇒ Object
The reason this block was terminated: :break, :redo, :retry, :next, :return, or :noreason.
3237 3238 3239 3240 3241 |
# File 'proc.c', line 3237
static VALUE
localjump_reason(VALUE exc)
{
return rb_iv_get(exc, "@reason");
}
|