At 12:01 PM 3/22/02 -0800, I wrote:
>At 04:43 PM 3/22/02 +0100, Patrice Boisieau wrote:
>>Hello
>>
>>Does it exist a CPAN module that computes the exhaustive graph of the
>>subroutines of a script ?
>
>It is not possible in general to tell such things from a Perl program
>because it could always
At 04:43 PM 3/22/02 +0100, Patrice Boisieau wrote:
>Hello
>
>Does it exist a CPAN module that computes the exhaustive graph of the
>subroutines of a script ?
It is not possible in general to tell such things from a Perl program
because it could always call a subroutine that is generated at runt
Hello
Does it exist a CPAN module that computes the exhaustive graph of the
subroutines of a script ?
Example:
Suppose script.pl contains the following code :
sub routine_B2 { ... }
sub routine_B1 { ... }
sub routine_A2 { ... routine_B2(); ... }
sub routine_A1 { ... routine_B1(); ... }
ro