develooper Front page | perl.beginners | Postings from March 2002

Exhaustive graph of subroutines

Thread Next
From:
Patrice Boisieau
Date:
March 22, 2002 07:44
Subject:
Exhaustive graph of subroutines
Message ID:
F106qporufdDh08nt9f00009bf0@hotmail.com
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(); ... }

routine_A1();
routine_A2();


The module would produce the following graph :

main::BEGIN
   routine_A1::BEGIN
      routine_B1::BEGIN
   routine_A2::BEGIN
      routine_B2::BEGIN


Patrice Boisieau

_________________________________________________________________
MSN Photos est le moyen le plus simple de partager, modifier et imprimer vos 
photos préférées. http://photos.msn.fr/Support/WorldWide.aspx


Thread Next


nntp.perl.org: Perl Programming lists via nntp and http.
Comments to Ask Bjørn Hansen at ask@perl.org | Group listing | About