Method: Empty.superclass
- Defined in:
- ext/evilr/evilr.c
.superclass ⇒ Class || nil
Returns the superclass of the class, or nil if current class is Empty. Basically a copy of the standard superclass method, without some checking.
922 923 924 |
# File 'ext/evilr/evilr.c', line 922 static VALUE evilr_empty_superclass(VALUE klass) { return klass == empty ? Qnil : evilr__next_class(klass); } |