Pathologically Eclectic Rubbish Lister | |
PerlMonks |
Why can't a method included in this same file be found?by faq_monk (Initiate) |
on Oct 08, 1999 at 00:27 UTC ( [id://702]=perlfaq nodetype: print w/replies, xml ) | Need Help?? |
Current Perl documentation can be found at perldoc.perl.org. Here is our local, out-dated (pre-5.6) version:
Some possible reasons: your inheritance is getting confused, you've
misspelled the method name, or the object is of the wrong type. Check out the perltoot manpage for details on these. You may also use
Another possible reason for problems is because you've used the indirect
object syntax (eg, Make sure to read about creating modules in the perlmod manpage and the perils of indirect objects in WARNING.
|
|