Hi All.
How can I get list of functions, which are export by Perl module used by script.
For example:
I have [Addon.pm] module.
It exports next list of functins:
---------------------------------
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK );
$VERSION = 0.1;
@ISA = ('Exporter');
@EXPORT = qw(
&function_1 &function_2
&function_n
);
@EXPORT_OK = qw(
);
---------------------------------
How can I from Perl script get thi list of functions (function_1, function_2, ... , function_n)?
How can I get list of functions, which are export by Perl module used by script.
For example:
I have [Addon.pm] module.
It exports next list of functins:
---------------------------------
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK );
$VERSION = 0.1;
@ISA = ('Exporter');
@EXPORT = qw(
&function_1 &function_2
&function_n
);
@EXPORT_OK = qw(
);
---------------------------------
How can I from Perl script get thi list of functions (function_1, function_2, ... , function_n)?