Class: Byebug::DebugThread
- Inherits:
-
Thread
- Object
- Thread
- Byebug::DebugThread
- Defined in:
- ext/byebug/context.c
Class Method Summary collapse
-
.inherited ⇒ Object
:nodoc:.
Class Method Details
.inherited ⇒ Object
:nodoc:
635 636 637 638 639 640 641 642 643 |
# File 'ext/byebug/context.c', line 635
static VALUE
dt_inherited(VALUE klass)
{
UNUSED(klass);
rb_raise(rb_eRuntimeError, "Can't inherit Byebug::DebugThread class");
return Qnil;
}
|