in reply to Re: Private Class Methods
in thread Private Class Methods
But #2 will fail on "indirect" private calls, i.e. where class A implements
and then public_method is invoked on a derived object. Bad bad.sub public_method { # do something $self->_my_private_method(); # do something else }
|
|---|