Class: Module
Instance Method Summary collapse
- #actual_super ⇒ Object
-
#actual_super=(klass) ⇒ Object
set the super class of an object.
- #iv_tbl ⇒ Object
- #iv_tbl= ⇒ Object
- #m_tbl ⇒ Object
- #m_tbl= ⇒ Object
Instance Method Details
#actual_super ⇒ Object
48 49 50 51 52 |
# File 'ext/mult/mult.c', line 48
static VALUE
get_super(VALUE self)
{
return RCLASS_SUPER(self);
}
|
#actual_super=(klass) ⇒ Object
set the super class of an object
55 56 57 58 59 |
# File 'ext/mult/mult.c', line 55
static VALUE
set_super(VALUE self, VALUE klass) {
RCLASS_SUPER(self) = klass;
return klass;
}
|