Method: Empty.superclass

Defined in:
ext/evilr/evilr.c

.superclassClass || 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.

Returns:



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);
}