Lines 1-15
Link Here
|
1 |
This little package serves to access the symbol table of |
1 |
This little package serves to access the symbol table of perl. |
2 |
perl. |
|
|
3 |
|
2 |
|
4 |
Devel::Symdump->rnew(@packages) |
3 |
Devel::Symdump->rnew(@packages) |
5 |
|
4 |
|
6 |
returns a symbol table object for all subtrees below |
5 |
returns a symbol table object for all subtrees below @packages. |
7 |
@packages. Nested Modules are analyzed recursively. If no |
6 |
Nested Modules are analyzed recursively. If no package is given as |
8 |
package is given as argument, it defaults to main. That |
7 |
argument, it defaults to main. That means to get the whole symbol |
9 |
means to get the whole symbol table, just do a rnew |
8 |
table, just do a rnew without arguments. |
10 |
without arguments. |
|
|
11 |
|
9 |
|
12 |
Devel::Symdump->new(@packages) |
10 |
Devel::Symdump->new(@packages) |
13 |
|
11 |
|
14 |
does not go into recursion and only analyzes the packages |
12 |
does not go into recursion and only analyzes the packages that are |
15 |
that are given as arguments. |
13 |
given as arguments. |
|
|
14 |
|
15 |
WWW: http://search.cpan.org/dist/Devel-Symdump/ |