Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: get the list of methods and variables

by Khen1950fx (Canon)
on Jun 17, 2010 at 09:17 UTC ( [id://845170]=note: print w/replies, xml ) Need Help??


in reply to get the list of methods and variables

To get a list of methods and variables from child.pm, I would use Devel::Symdump. Here's an example:
#!/usr/bin/perl use strict; use warnings; use Data::Dumper::Concise; require Devel::Symdump; my @packs = qw(Data::Dumper::Concise); my $obj = Devel::Symdump->new(@packs); my @array = $obj->scalars; @array = $obj->arrays; @array = $obj->hashes; my $string = $obj->as_string; print $string, "\n";
I substituted Data::Dumper::Concisefor Grandparent::Parent::Child; also, make sure that you "use" the package just below use warnings.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://845170]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (3)
As of 2024-03-29 07:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found