http://qs1969.pair.com?node_id=845157


in reply to get the list of methods and variables

PAR installs the scandeps.pl program which can be called on any Perl file and it will list the dependencies.

You could take this dependency list and check for sub or (my|our|local) declarations, thus listing your methods and vars.

That's the first approach that comes to mind, (because I've been fiddling with PAR recently), hope it helps

print "Good ",qw(night morning afternoon evening)[(localtime)[2]/6]," fellow monks."

Replies are listed 'Best First'.
Re^2: get the list of methods and variables
by Anonymous Monk on Jun 17, 2010 at 08:09 UTC
    scandeps lists modules/files, not methods/variables