PerlOnTheWay has asked for the wisdom of the Perl Monks concerning the following question:
my $a = 1; .. my $b = func1($a); .. sub t{ my ($c) = @_; } t(func2($b));
Since Parse::Perl::Independant can parse Perl itself,is it possible to know that $c is first converted from $a and then converted from $b programatically(which is obvious for human)?
If yes,any advice?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Static analysis using PPI
by Corion (Patriarch) on Dec 13, 2011 at 12:37 UTC | |
|
Re: Static analysis using PPI
by bluescreen (Friar) on Dec 13, 2011 at 12:48 UTC | |
|
Re: Static analysis using PPI
by Anonymous Monk on Dec 13, 2011 at 13:35 UTC |