in reply to How to call Class method inside an object?

Perl doesn't really have a distinction between class methods and instance methods as an implementation: only as a convention. What doesn't work about simply using $self->method(@args)?

-- Randal L. Schwartz, Perl hacker