in reply to Re^3: Inheritance via class::derived_method Question
in thread Inheritance via class::derived_method Question

There is no @class::ISA array search for "method".

Correct, because you're not calling it as a method.

There is no "automatic" first argument=class passed to the method.

Correct, because you're not calling it as a method.

class->method(); dereferences class for "method"

Incorrect terminology, but yes. class->method() calls Class's method method, using inheritance if necessary.