Read Me - Common Public License V1.0 - Copyright Notice(©)

superClasses


>>-superClasses------------------------------------------------><

Returns the immediate superclasses of the receiver class in the form of a single-index array of the required size. The immediate superclasses are the original class used on a [subClass] or a [mixinClass] method, plus any additional superclasses defined with the [inherit] method. The array is in the order in which the class has inherited the classes. The original class used on a [subClass] or [mixinClass] method is the first item of the array.

Class class - superClasses method

z=.class~superClasses
/* To obtain the information this returns, you could use:     */
do i over z
  say i
end

Read Me - Common Public License V1.0 - Copyright Notice(©)