Module: Debase

Defined in:
ext/debase_internals.c

Class Method Summary collapse

Class Method Details

.catchpointsObject



428
429
430
431
432
433
434
# File 'ext/debase_internals.c', line 428

static VALUE
Debase_catchpoints(VALUE self)
{
  if (catchpoints == Qnil)
    rb_raise(rb_eRuntimeError, "Debugger.start is not called yet.");
  return catchpoints; 
}