Exception: Exception
- Defined in:
- lib/skiptrace/exception_ext.rb
Instance Method Summary collapse
Instance Method Details
#binding_locations ⇒ Object
2 3 4 |
# File 'lib/skiptrace/exception_ext.rb', line 2 def binding_locations @binding_locations ||= Skiptrace::BindingLocations.new(backtrace_locations, bindings) end |
#bindings ⇒ Object
58 59 60 61 62 63 64 65 66 67 68 |
# File 'ext/skiptrace/cruby.c', line 58
static VALUE
st_exc_bindings(VALUE self)
{
VALUE bindings = rb_attr_get(self, id_bindings);
if (NIL_P(bindings)) {
bindings = rb_ary_new();
}
return bindings;
}
|